Re: [Python-Dev] [Python-checkins] cpython: #6771: Move wrapper function into __init__ and eliminate wrapper module

2011-06-19 Thread R. David Murray
On Sun, 19 Jun 2011 15:40:01 -0400, Jim Jewett wrote: > Does this really need to be a bare except? No, but that's a separate bug report, which you are welcome to file. The issue I closed was about moving the existing code. -- R. David Murray http://www.bitdance.com ___

Re: [Python-Dev] [Python-checkins] cpython (3.1): Fix closes issue12261 - Minor documention changes in the urllib.parse.rst

2011-06-19 Thread Senthil Kumaran
On Sun, Jun 19, 2011 at 10:59:26PM +0200, Éric Araujo wrote: > > Remember that 3.1 is in security mode, and as such will not get new > documentation releases. See the previous threads about 2.6 docs or > security releases for more info. Thanks for the information. I missed that somehow. Noted an

Re: [Python-Dev] [Python-checkins] cpython (3.1): Fix closes issue12261 - Minor documention changes in the urllib.parse.rst

2011-06-19 Thread Éric Araujo
Hi, Remember that 3.1 is in security mode, and as such will not get new documentation releases. See the previous threads about 2.6 docs or security releases for more info. Regards ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org

Re: [Python-Dev] [Python-checkins] cpython: #6771: Move wrapper function into __init__ and eliminate wrapper module

2011-06-19 Thread Jim Jewett
Does this really need to be a bare except? On Sat, Jun 18, 2011 at 8:21 PM, r.david.murray wrote: > http://hg.python.org/cpython/rev/9c96c3adbcd1 > changeset:   70867:9c96c3adbcd1 > user:        R David Murray > date:        Sat Jun 18 20:21:09 2011 -0400 > summary: >  #6771: Move wrapper functi

Re: [Python-Dev] [Python-checkins] devguide: Add a communications section to the devguide FAQ (closes #11690)

2011-06-19 Thread Victor Stinner
Le dimanche 19 juin 2011 à 16:51 +0200, nick.coghlan a écrit : > +Where should I ask general Python questions? > + > + > +General Python questions should still go to `python-list`_ or `python-tutor`_ > +or similar resources, such as StackOverflow_ or ``#p

Re: [Python-Dev] [Python-checkins] devguide: Fix copy-paste glitch :)

2011-06-19 Thread Nick Coghlan
On Mon, Jun 20, 2011 at 12:57 AM, eric.araujo wrote: > http://hg.python.org/devguide/rev/f55ad3dc4526 > changeset:   434:f55ad3dc4526 > user:        Éric Araujo > date:        Sun Jun 19 16:56:58 2011 +0200 > summary: >  Fix copy-paste glitch :) > > files: >  committing.rst |  2 +- >  1 files cha

Re: [Python-Dev] [Python-checkins] cpython: edit and rewrite

2011-06-19 Thread Victor Stinner
Le samedi 18 juin 2011 à 02:51 +0200, benjamin.peterson a écrit : > .. function:: dump_traceback(file=sys.stderr, all_threads=True) > > - Dump the traceback of all threads, or of the current thread if > *all_threads* > - is ``False``, into *file*. > + Dump the traceback of all threads int

Re: [Python-Dev] [Python-checkins] cpython: #11781: update windows build script to account for move of email tests

2011-06-19 Thread Martin v. Löwis
>> # This should contain all non-.svn files listed in >> subversion > > Should this be mercurial Perhaps. > >> for f in os.listdir(lib.absolute): >> if f.endswith(".txt") or f==".svn":continue > > and this .hg? No. Martin