Re: [Python-Dev] [RELEASE] Python 2.7.2 release candidate 1

2011-05-30 Thread Victor Stinner
Hi, Le lundi 30 mai 2011 06:47:40, Ralf Schmitt a écrit : > Benjamin Peterson writes: > > The 2.7.2 changelog is at: > > http://hg.python.org/cpython/file/439396b06416/Misc/NEWS > > The news file mentions that issue 1195 ("Problems on Linux with Ctrl-D > and Ctrl-C during raw_input") is fix

Re: [Python-Dev] [RELEASE] Python 2.7.2 release candidate 1

2011-05-30 Thread Ralf Schmitt
Victor Stinner writes: >> Does one need special roundup rights to reopen issues? > > Oh, I forgot that one. Please reopen the issue, I will apply your fix instead > of mine. I would love to do that, but as my above question implies I'm either too stupid to do that or I'm missing the rights to d

Re: [Python-Dev] [RELEASE] Python 2.7.2 release candidate 1

2011-05-30 Thread Victor Stinner
Le lundi 30 mai 2011 10:46:39, Ralf Schmitt a écrit : > Victor Stinner writes: > >> Does one need special roundup rights to reopen issues? > > > > Oh, I forgot that one. Please reopen the issue, I will apply your fix > > instead of mine. > > I would love to do that, but as my above question impl

[Python-Dev] pysetup as a top script

2011-05-30 Thread Tarek Ziadé
Hello If no one objects, I'll promote Tools/scripts/pysetup3 to a top level script that gets installed in scripts/ like 2to3, pydoc etc.. That way, people will be able to use it directly when installing, removing projects, or studying what's installed Cheers Tarek -- Tarek Ziadé | http://ziade.

[Python-Dev] Docs for the packaging module

2011-05-30 Thread Éric Araujo
Hi, The docs were not added alongside the code when packaging was merged back into CPython because they were not in a shape conforming with the rest of the docs. I’d like your input on layout so that I can fix this ASAP and merge the docs. (They would still require a lot of additions, fixes and

Re: [Python-Dev] cpython: removed spurious output

2011-05-30 Thread Georg Brandl
On 30.05.2011 17:54, Terry Reedy wrote: > > > On 5/30/2011 6:25 AM, tarek.ziade wrote: > > Should not old_out be sys.stderr, since that is what you over-write and > 'restore'? > >> +old_out = sys.stdout >> +sys.stderr = StringIO() >> +try: >> +dist = self.ru

Re: [Python-Dev] cpython: removed spurious output

2011-05-30 Thread Tarek Ziadé
On Mon, May 30, 2011 at 7:04 PM, Georg Brandl wrote: > On 30.05.2011 17:54, Terry Reedy wrote: >> >> >> On 5/30/2011 6:25 AM, tarek.ziade wrote: >> >> Should not old_out be sys.stderr, since that is what you over-write and >> 'restore'? >> >>> +        old_out = sys.stdout >>> +        sys.stderr

Re: [Python-Dev] cpython: removed spurious output

2011-05-30 Thread Georg Brandl
On 30.05.2011 19:13, Tarek Ziadé wrote: > On Mon, May 30, 2011 at 7:04 PM, Georg Brandl wrote: >> On 30.05.2011 17:54, Terry Reedy wrote: >>> >>> >>> On 5/30/2011 6:25 AM, tarek.ziade wrote: >>> >>> Should not old_out be sys.stderr, since that is what you over-write and >>> 'restore'? >>> +

Re: [Python-Dev] pysetup as a top script

2011-05-30 Thread Nick Coghlan
On Tue, May 31, 2011 at 2:44 AM, Tarek Ziadé wrote: > Hello > > If no one objects, I'll promote Tools/scripts/pysetup3 to a top level > script that gets installed in scripts/ like 2to3, pydoc etc.. > > That way, people will be able to use it directly when installing, > removing projects, or studyi

Re: [Python-Dev] [Python-checkins] cpython: removed spurious output

2011-05-30 Thread Nick Coghlan
On Mon, May 30, 2011 at 8:25 PM, tarek.ziade wrote: > +        old_out = sys.stdout > +        sys.stderr = StringIO() > +        try: > +            dist = self.run_setup('install_dist', '--prefix=' + > self.root_dir) > +        finally: > +            sys.sterr = old_out There's actually a hel

Re: [Python-Dev] [Python-checkins] cpython: Close #12028: Make threading._get_ident() public, rename it to

2011-05-30 Thread Nick Coghlan
On Tue, May 31, 2011 at 7:04 AM, victor.stinner wrote: > +.. function:: get_ident() > + > +   Return the 'thread identifier' of the current thread.  This is a nonzero > +   integer.  Its value has no direct meaning; it is intended as a magic > cookie > +   to be used e.g. to index a dictionary of

Re: [Python-Dev] pysetup as a top script

2011-05-30 Thread Tarek Ziadé
On Tue, May 31, 2011 at 7:13 AM, Nick Coghlan wrote: > On Tue, May 31, 2011 at 2:44 AM, Tarek Ziadé wrote: >> Hello >> >> If no one objects, I'll promote Tools/scripts/pysetup3 to a top level >> script that gets installed in scripts/ like 2to3, pydoc etc.. >> >> That way, people will be able to u