Re: [Python-Dev] python source code

2008-04-07 Thread Benjamin Peterson
On Sun, Apr 6, 2008 at 11:58 PM, Avi Kohn <[EMAIL PROTECTED]> wrote: > I am interested in understanding the python source code. Can someone > direct me to resources (documentation,book,archive of mailling lists,etc) > that will assist me ? > What part(s) do you want to learn about? The CPython int

[Python-Dev] python source code

2008-04-07 Thread Avi Kohn
I am interested in understanding the python source code. Can someone direct me to resources (documentation,book,archive of mailling lists,etc) that will assist me ? Thank you, Avi -- Avi Kohn ___ Python-Dev mailing list Python-Dev@python.org http://mail

Re: [Python-Dev] Python source code on Bazaar vcs

2008-04-04 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mar 25, 2008, at 2:05 PM, [EMAIL PROTECTED] wrote: > >>> Did I misread the directions or do I really need the --create-prefix >>> arg? > >Barry> You do, the first time you push a user branch because > users/skip >Barry> doesn't exist yet.

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-30 Thread Martin v. Löwis
[EMAIL PROTECTED] wrote: > Benjamin> Once you've pushed the branches, is there a way to remove them? > > Related question: is there a way to view the various branches in a non-local > repository? IIUC, conceptually, no. A branch is not *in* a repository; a branch *is* a repository (*). So you

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-29 Thread skip
Benjamin> Once you've pushed the branches, is there a way to remove them? Related question: is there a way to view the various branches in a non-local repository? Skip ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailma

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-29 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mar 29, 2008, at 6:00 PM, Benjamin Peterson wrote: > > No, I mean the pushed version on code.python.org. Not unless you have shell or sftp access, which you probably don't. It's not a big deal though except for a mild feeling of uncleanliness.

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-29 Thread Benjamin Peterson
On Sat, Mar 29, 2008 at 4:59 PM, Barry Warsaw <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Mar 29, 2008, at 5:11 PM, Benjamin Peterson wrote: > > > Once you've pushed the branches, is there a way to remove them? > > Do you mean the local branches? If yes, th

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-29 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mar 29, 2008, at 5:11 PM, Benjamin Peterson wrote: > Once you've pushed the branches, is there a way to remove them? Do you mean the local branches? If yes, then 'rm -rf mymergedbranch' does exactly what you want. :) - -Barry -BEGIN PGP S

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-29 Thread Benjamin Peterson
On Thu, Mar 20, 2008 at 2:42 PM, Barry Warsaw <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I'm happy to announce that we now have available for public > consumption, the Python source code for 2.5, 2.6 and 3.0 available > under the Bazaar distributed version con

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-25 Thread skip
>> Did I misread the directions or do I really need the --create-prefix >> arg? Barry> You do, the first time you push a user branch because users/skip Barry> doesn't exist yet. It's mentioned in the docs, but it's pretty Barry> easy to overlook ;). Well, I noticed the menti

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-25 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mar 24, 2008, at 11:06 PM, [EMAIL PROTECTED] wrote: >Barry> All the gory details are documented here: > >Barry> http://www.python.org/dev/bazaar > > Thanks. I checked out, made a branch named test3, changed > Makefile.pre.in > to ha

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-24 Thread skip
Barry> All the gory details are documented here: Barry> http://www.python.org/dev/bazaar Thanks. I checked out, made a branch named test3, changed Makefile.pre.in to have a test3 target, checked it in, then tried to push it: % pwd /Users/skip/src/python-bzr/test3 % bzr

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-22 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mar 20, 2008, at 5:49 PM, Christian Heimes wrote: > Barry Warsaw schrieb: >> I'm happy to announce that we now have available for public >> consumption, the Python source code for 2.5, 2.6 and 3.0 available >> under the Bazaar distributed version co

Re: [Python-Dev] Python source code on Mercurial

2008-03-22 Thread Paul Moore
On 22/03/2008, Benjamin Peterson <[EMAIL PROTECTED]> wrote: > > One point, which I assume you know but others may not - a bazaar > > "checkout" is not like a local branch. In a checkout, all commits go > > straight back to the parent branch, meaning that local commits aren't > > possible (OK, that

Re: [Python-Dev] Python source code on Mercurial

2008-03-22 Thread Benjamin Peterson
On Sat, Mar 22, 2008 at 7:39 AM, Paul Moore <[EMAIL PROTECTED]> wrote: > On 21/03/2008, Brett Cannon <[EMAIL PROTECTED]> wrote: > > Bazaar supports lightweight checkouts which act like svn checkouts. > > They are also actively working on allowing for partial checkouts. That > > way you can eithe

Re: [Python-Dev] Python source code on Mercurial

2008-03-22 Thread Paul Moore
On 21/03/2008, Brett Cannon <[EMAIL PROTECTED]> wrote: > Bazaar supports lightweight checkouts which act like svn checkouts. > They are also actively working on allowing for partial checkouts. That > way you can either specify an initial revision to pull the history > down to or start with an in

Re: [Python-Dev] Python source code on Mercurial

2008-03-22 Thread Georg Brandl
Antoine Pitrou schrieb: > Ralf Schmitt gmail.com> writes: >> >> I have also setup a mirror using mercurial: http://hgpy.de/py/It contains the > 2.4, 2.5, trunk and py3k branches (in case anyone wants to compare this to > bzr). > > I see your trunk history is stripped. For those who want the com

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-22 Thread Georg Brandl
Matthieu Brucher schrieb: > Good, because between this now and pytz the other 63 projects I > follow use > Subversion or Mercurial. > Bazaar seems to be mostly limited to Ubuntu users and stuff > Canonical does, > so the choice for a Bazaar setup next to Subversion strikes

Re: [Python-Dev] Python source code on Mercurial

2008-03-21 Thread Brett Cannon
On Fri, Mar 21, 2008 at 2:38 PM, Paul Moore <[EMAIL PROTECTED]> wrote: > On 21/03/2008, Antoine Pitrou <[EMAIL PROTECTED]> wrote: > > I see your trunk history is stripped. For those who want the complete > trunk > > history (back to 17 years ago!), I have my own mirror here: > > http://dev.

Re: [Python-Dev] Python source code on Mercurial

2008-03-21 Thread Antoine Pitrou
Hi, Paul Moore gmail.com> writes: > > Excellent! For what it's worth, hg clone took 5 minutes on my PC (with > broadband access). That's faster than simply downloading the Bazaar > shared repository tarball (which took 13 minutes)! > > Are you keeping the mirror updated with respect to Subvers

Re: [Python-Dev] Python source code on Mercurial

2008-03-21 Thread Paul Moore
On 21/03/2008, Antoine Pitrou <[EMAIL PROTECTED]> wrote: > I see your trunk history is stripped. For those who want the complete trunk > history (back to 17 years ago!), I have my own mirror here: > http://dev.pitrou.net:8000/cpython/trunk/ Excellent! For what it's worth, hg clone took 5 minut

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-21 Thread Benjamin Peterson
On Thu, Mar 20, 2008 at 2:42 PM, Barry Warsaw <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I'm happy to announce that we now have available for public > consumption, the Python source code for 2.5, 2.6 and 3.0 available > under the Bazaar distributed version con

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-21 Thread Brett Cannon
On Fri, Mar 21, 2008 at 1:42 AM, Jeroen Ruigrok van der Werven <[EMAIL PROTECTED]> wrote: > (To provide counterweight.) > > > -On [20080320 20:44], Barry Warsaw ([EMAIL PROTECTED]) wrote: > >We have not made a decision to move to Bazaar officially, nor have we made > >a decision to even move off

Re: [Python-Dev] Python source code on Mercurial

2008-03-21 Thread Antoine Pitrou
Ralf Schmitt gmail.com> writes: > > I have also setup a mirror using mercurial: http://hgpy.de/py/It contains the 2.4, 2.5, trunk and py3k branches (in case anyone wants to compare this to bzr). I see your trunk history is stripped. For those who want the complete trunk history (back to 17 years

[Python-Dev] Python source code on Bazaar vcs

2008-03-21 Thread Matthieu Brucher
Sorry for the double post, Jeroen :| -- Forwarded message -- From: Matthieu Brucher <[EMAIL PROTECTED]> Date: 21 mars 2008 10:03 Subject: Re: [Python-Dev] Python source code on Bazaar vcs To: Jeroen Ruigrok van der Werven <[EMAIL PROTECTED]> 2008/3/21, Jeroen Rui

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-21 Thread Jeroen Ruigrok van der Werven
(To provide counterweight.) -On [20080320 20:44], Barry Warsaw ([EMAIL PROTECTED]) wrote: >We have not made a decision to move to Bazaar officially, nor have we made >a decision to even move off of Subversion. Good, because between this now and pytz the other 63 projects I follow use Subversion o

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-20 Thread Christian Heimes
Barry Warsaw schrieb: > I'm happy to announce that we now have available for public > consumption, the Python source code for 2.5, 2.6 and 3.0 available > under the Bazaar distributed version control system. Somebody has to fix the subversion related code in Python/sysmodule.c: [EMAIL PROTECTED]:

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-20 Thread Ralf Schmitt
On Thu, Mar 20, 2008 at 8:42 PM, Barry Warsaw <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I'm happy to announce that we now have available for public > consumption, the Python source code for 2.5, 2.6 and 3.0 available > under the Bazaar distributed version con

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-20 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mar 20, 2008, at 3:58 PM, Christian Heimes wrote: > Barry Warsaw schrieb: >> I'm happy to announce that we now have available for public >> consumption, the Python source code for 2.5, 2.6 and 3.0 available >> under the Bazaar distributed ver

Re: [Python-Dev] Python source code on Bazaar vcs

2008-03-20 Thread Christian Heimes
Barry Warsaw schrieb: > I'm happy to announce that we now have available for public > consumption, the Python source code for 2.5, 2.6 and 3.0 available > under the Bazaar distributed version control system. Thank you very much to Barry and the rest of team! Great work! Ubuntu users have to i

[Python-Dev] Python source code on Bazaar vcs

2008-03-20 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I'm happy to announce that we now have available for public consumption, the Python source code for 2.5, 2.6 and 3.0 available under the Bazaar distributed version control system. The current Subversion repository is still the master copy of the