Re: [Python-Dev] Distutils2 scripts

2010-10-21 Thread Ron Adam
On 10/21/2010 07:13 PM, Greg Ewing wrote: Eric Smith wrote: Or for that matter a plain "pysetup". It would be the one that a plain "python" would get you. If 'pysetup' is simply a shell script that invokes 'python -m setup' using the current search path, I guess that's true. On Windows, how

Re: [Python-Dev] 3.1.3 and 2.7.1 release schedule

2010-10-21 Thread Barry Warsaw
On Oct 21, 2010, at 05:57 PM, Benjamin Peterson wrote: >In the interest of getting 3.1.3 and 2.7.1 out by next year, here's a >tentative release schedule: > >November 13th - RC1 >November 27th - RC2 >December 11th - Final Sounds like you're planning to get finals out this year, not next :). +1 f

Re: [Python-Dev] Distutils2 scripts

2010-10-21 Thread Greg Ewing
Eric Smith wrote: Or for that matter a plain "pysetup". It would be the one that a plain "python" would get you. If 'pysetup' is simply a shell script that invokes 'python -m setup' using the current search path, I guess that's true. On Windows, however, it seems to me that the current 'python

Re: [Python-Dev] python-2.6.6 coredump running newspipe

2010-10-21 Thread Martin v. Löwis
> Any ideas what could cause this or how to fix this? It could be a compiler bug; try disabling optimization. Regards, Martin ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.

[Python-Dev] 3.1.3 and 2.7.1 release schedule

2010-10-21 Thread Benjamin Peterson
In the interest of getting 3.1.3 and 2.7.1 out by next year, here's a tentative release schedule: November 13th - RC1 November 27th - RC2 December 11th - Final I'll jump for it if there are no objections. -- Regards, Benjamin ___ Python-Dev mailing li

Re: [Python-Dev] My work on Python3 and non-ascii paths is done

2010-10-21 Thread Toshio Kuratomi
On Thu, Oct 21, 2010 at 12:00:40PM -0400, Barry Warsaw wrote: > On Oct 20, 2010, at 02:11 AM, Victor Stinner wrote: > > >I plan to fix Python documentation: specify the encoding used to decode all > >byte string arguments of the C API. I already wrote a draft patch: issue > >#9738. This lack of

Re: [Python-Dev] [Python-checkins] r85733 - in python/branches/py3k: Doc/library/logging.rst Lib/logging/__init__.py

2010-10-21 Thread Éric Araujo
+``Filters` can be used by ``Handlers`` and ``Loggers`` for more ↑ missing ` here. Regards ___ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/option

Re: [Python-Dev] hg migration schedule

2010-10-21 Thread Brett Cannon
On Thu, Oct 21, 2010 at 06:32, Dirkjan Ochtman wrote: > Okay, we're getting somewhere here. > > I've been conferring with Georg on when we can do the conversion. He's > done some testing with the buildbot setup, which seems to be mostly > done. He also completed preliminary ports of the hooks used

Re: [Python-Dev] My work on Python3 and non-ascii paths is done

2010-10-21 Thread Barry Warsaw
On Oct 20, 2010, at 02:11 AM, Victor Stinner wrote: >I plan to fix Python documentation: specify the encoding used to decode all >byte string arguments of the C API. I already wrote a draft patch: issue >#9738. This lack of documentation was a big problem for me, because I had to >follow the fu

Re: [Python-Dev] hg migration schedule

2010-10-21 Thread Guido van Rossum
Yay! I am so looking forward to dissing SVN... On Thu, Oct 21, 2010 at 6:32 AM, Dirkjan Ochtman wrote: > Okay, we're getting somewhere here. > > I've been conferring with Georg on when we can do the conversion. He's > done some testing with the buildbot setup, which seems to be mostly > done. He

[Python-Dev] hg migration schedule

2010-10-21 Thread Dirkjan Ochtman
Okay, we're getting somewhere here. I've been conferring with Georg on when we can do the conversion. He's done some testing with the buildbot setup, which seems to be mostly done. He also completed preliminary ports of the hooks used in the SVN repository. He managed to convince me that we're at

Re: [Python-Dev] Distutils2 scripts

2010-10-21 Thread Eric Smith
On 10/21/2010 4:44 AM, Antoine Pitrou wrote: On Wed, 20 Oct 2010 20:01:56 -0500 Ron Adam wrote: On Ubuntu, I use python, python2.7, python3.1, python3.2 and that is what I type to use that particular version. The -m option seems to me to be the easiest to do and works with all of these.

Re: [Python-Dev] maximum recursion depth exceeded in lib\pstats.py

2010-10-21 Thread Michael Foord
On 21/10/2010 12:20, Adam Bielański wrote: Hi all, There's a bug in Python 2.6, module lib\pstats.py, line 150. I'm pretty sure, however that it also exists in other versions, as I don't think that profiler differs very much between them. Let me paste a little piece of surrounding code:

[Python-Dev] maximum recursion depth exceeded in lib\pstats.py

2010-10-21 Thread Adam Bielański
Hi all, There's a bug in Python 2.6, module lib\pstats.py, line 150. I'm pretty sure, however that it also exists in other versions, as I don't think that profiler differs very much between them. Let me paste a little piece of surrounding code: class Stats: () def add(

Re: [Python-Dev] Distutils2 scripts

2010-10-21 Thread Antoine Pitrou
On Wed, 20 Oct 2010 20:01:56 -0500 Ron Adam wrote: > > On Ubuntu, I use python, python2.7, python3.1, python3.2 and that is what I > type to use that particular version. The -m option seems to me to be the > easiest to do and works with all of these. > > python2.7 -m setup > python3