Re: [Python-Dev] stabilizing for a release

2010-04-07 Thread anatoly techtonik
There is still a serious regression in zipfile module: http://bugs.python.org/issue6090 And I would really like to see my issue with difflib tabs committed: =/ http://bugs.python.org/issue7585 -- anatoly t. On Wed, Apr 7, 2010 at 4:09 AM, Benjamin Peterson benja...@python.org wrote: Let's

Re: [Python-Dev] stabilizing for a release

2010-04-07 Thread Martin v. Löwis
anatoly techtonik wrote: There is still a serious regression in zipfile module: http://bugs.python.org/issue6090 And I would really like to see my issue with difflib tabs committed: =/ http://bugs.python.org/issue7585 None of these are buildbot failures, so they can't go into 2.7b1, by the

Re: [Python-Dev] stabilizing for a release

2010-04-07 Thread anatoly techtonik
On Wed, Apr 7, 2010 at 2:10 PM, Martin v. Löwis mar...@v.loewis.de wrote: There is still a serious regression in zipfile module: http://bugs.python.org/issue6090 And I would really like to see my issue with difflib tabs committed: =/ http://bugs.python.org/issue7585 None of these are

Re: [Python-Dev] stabilizing for a release

2010-04-07 Thread Michael Foord
On 07/04/2010 11:30, anatoly techtonik wrote: There is still a serious regression in zipfile module: http://bugs.python.org/issue6090 And I would really like to see my issue with difflib tabs committed: =/ http://bugs.python.org/issue7585 The zipfile issue looks like it could be fixed for

Re: [Python-Dev] stabilizing for a release

2010-04-07 Thread Martin v. Löwis
anatoly techtonik wrote: On Wed, Apr 7, 2010 at 2:10 PM, Martin v. Löwis mar...@v.loewis.de wrote: There is still a serious regression in zipfile module: http://bugs.python.org/issue6090 And I would really like to see my issue with difflib tabs committed: =/ http://bugs.python.org/issue7585

Re: [Python-Dev] ffi junk messages

2010-04-07 Thread Mark Dickinson
On Wed, Apr 7, 2010 at 1:39 PM, Jeroen Ruigrok van der Werven asmo...@in-nomine.org wrote: Before I file a bug report, is anyone else seeing this (in my case on FreeBSD 8): Modules/_ctypes/libffi/src/x86/sysv.S:360: Error: junk at end of line, first unrecognized character is `@'

Re: [Python-Dev] ffi junk messages

2010-04-07 Thread Jeroen Ruigrok van der Werven
-On [20100407 15:29], Martin v. Löwis (mar...@v.loewis.de) wrote: Instead of submitting a bug report, it would be better to submit a patch, though. Can you try having the build process use freebsd.S instead of sysv.S? Mark and me are looking at it right now. I can compile ctypes using

Re: [Python-Dev] Proposing PEP 376

2010-04-07 Thread Tarek Ziadé
2010/4/2 P.J. Eby p...@telecommunity.com: [...] * Paths under the base installation location are relative to the base * Paths not under the base installation location, but under the installation prefix, are also stored relative to the base, IF the base location is a subpath of the

Re: [Python-Dev] ffi junk messages

2010-04-07 Thread exarkun
On 01:29 pm, mar...@v.loewis.de wrote: Mark Dickinson wrote: On Wed, Apr 7, 2010 at 1:39 PM, Jeroen Ruigrok van der Werven asmo...@in-nomine.org wrote: Before I file a bug report, is anyone else seeing this (in my case on FreeBSD 8): Modules/_ctypes/libffi/src/x86/sysv.S:360: Error: junk at

Re: [Python-Dev] ffi junk messages

2010-04-07 Thread Martin v. Löwis
Instead of submitting a bug report, it would be better to submit a In *addition* to submitted a bug report, surely. :) I'm not so sure. It's a ctypes/libffi bug, so most likely, nobody will be able to fix it when reported. For platform-specific libffi bugs, the patch most likely will come

Re: [Python-Dev] ffi junk messages

2010-04-07 Thread Jeroen Ruigrok van der Werven
-On [20100407 16:17], Martin v. Löwis (mar...@v.loewis.de) wrote: I'm not so sure. It's a ctypes/libffi bug, so most likely, nobody will be able to fix it when reported. For platform-specific libffi bugs, the patch most likely will come from the submitter, as nobody else might have access

Re: [Python-Dev] Proposing PEP 376

2010-04-07 Thread P.J. Eby
At 04:01 PM 4/7/2010 +0200, Tarek Ziadé wrote: 2010/4/2 P.J. Eby p...@telecommunity.com: [...] * Paths under the base installation location are relative to the base * Paths not under the base installation location, but under the installation prefix, are also stored relative to the base, IF

Re: [Python-Dev] Proposing PEP 376

2010-04-07 Thread Tarek Ziadé
On Wed, Apr 7, 2010 at 4:35 PM, P.J. Eby p...@telecommunity.com wrote: At 04:01 PM 4/7/2010 +0200, Tarek Ziadé wrote: 2010/4/2 P.J. Eby p...@telecommunity.com: [...] * Paths under the base installation location are relative to the base * Paths not under the base installation location,

Re: [Python-Dev] ffi junk messages

2010-04-07 Thread Antoine Pitrou
Martin v. Löwis martin at v.loewis.de writes: Instead of submitting a bug report, it would be better to submit a In *addition* to submitted a bug report, surely. :) I'm not so sure. It's a ctypes/libffi bug, so most likely, nobody will be able to fix it when reported. It's probably

[Python-Dev] Episode 11 of A Little Bit of Python

2010-04-07 Thread Michael Foord
Hello all, Not *strictly* on topic, but probably of interest nonetheless (so my apologies). Episode 11 of A Little Bit of Python is now available. An interview with core-CPython developer Antoine Pitrou. http://advocacy.python.org/podcasts/littlebit/2010-04-07.mp3 Many thanks to Antoine

Re: [Python-Dev] ffi junk messages

2010-04-07 Thread Martin v. Löwis
(also, as I understand it, the latest ctypes issues seem to have popped up after an update of the bundled libffi, so perhaps that update wasn't totally right, didn't choose the right libffi version, or missed some files?) In the case of the SPARC issue: the bug is still exists in the libffi

Re: [Python-Dev] Proposing PEP 376

2010-04-07 Thread Ian Bicking
On Wed, Apr 7, 2010 at 9:40 AM, Tarek Ziadé ziade.ta...@gmail.com wrote: so for the PEP : - sys.prefix - the installation prefix provided by --prefix at installation time - site-packages - the installation libdir, provided by --install-lib at installation time How do you actually

Re: [Python-Dev] Proposing PEP 376

2010-04-07 Thread P.J. Eby
At 04:40 PM 4/7/2010 +0200, Tarek Ziadé wrote: On Wed, Apr 7, 2010 at 4:35 PM, P.J. Eby p...@telecommunity.com wrote: At 04:01 PM 4/7/2010 +0200, Tarek Ziadé wrote: 2010/4/2 P.J. Eby p...@telecommunity.com: [...] * Paths under the base installation location are relative to the base *

Re: [Python-Dev] Proposing PEP 376

2010-04-07 Thread P.J. Eby
At 11:33 AM 4/7/2010 -0500, Ian Bicking wrote: On Wed, Apr 7, 2010 at 9:40 AM, Tarek Ziadé mailto:ziade.ta...@gmail.comziade.ta...@gmail.com wrote: so for the PEP : - sys.prefix - the installation prefix provided by --prefix at installation time - site-packages - the installation libdir,

Re: [Python-Dev] Proposing PEP 376

2010-04-07 Thread Ian Bicking
On Wed, Apr 7, 2010 at 12:45 PM, P.J. Eby p...@telecommunity.com wrote: Examples under debian: docutils/__init__.py - located in /usr/local/lib/python2.6/site-packages/ ../../../bin/rst2html.py - located in /usr/local/bin /etc/whatever -

Re: [Python-Dev] Proposing PEP 376

2010-04-07 Thread P.J. Eby
At 12:51 PM 4/7/2010 -0500, Ian Bicking wrote: On Wed, Apr 7, 2010 at 12:45 PM, P.J. Eby mailto:p...@telecommunity.comp...@telecommunity.com wrote: Examples under debian:   docutils/__init__.py      -   located in /usr/local/lib/python2.6/site-packages/  Â

Re: [Python-Dev] [python-committers] stabilizing for a release

2010-04-07 Thread R. David Murray
On Wed, 07 Apr 2010 12:54:51 +0100, Michael Foord fuzzy...@voidspace.org.uk wrote: On 07/04/2010 11:30, anatoly techtonik wrote: There is still a serious regression in zipfile module: http://bugs.python.org/issue6090 And I would really like to see my issue with difflib tabs committed: =/

[Python-Dev] iso-2022 and issue 7472: question for the experts

2010-04-07 Thread Stephen J. Turnbull
R. David Murray writes: A long time ago (in a galaxy far far...no, wrong show) Er, as I was saying, a long time ago Barry applied a patch to email that went more or less like this: ndex: email/Encoders.py === ---

[Python-Dev] regrtest oddify

2010-04-07 Thread Martin v. Löwis
I have commented out all tests in test_gdb, yet http://www.python.org/dev/buildbot/all/builders/sparc%20Ubuntu%20trunk/builds/47/steps/test/logs/stdio still shows them being run. Can anybody explain that, please? TIA, Martin ___ Python-Dev mailing

Re: [Python-Dev] regrtest oddify

2010-04-07 Thread Benjamin Peterson
2010/4/7 Martin v. Löwis mar...@v.loewis.de: I have commented out all tests in test_gdb, yet http://www.python.org/dev/buildbot/all/builders/sparc%20Ubuntu%20trunk/builds/47/steps/test/logs/stdio still shows them being run. Can anybody explain that, please? That's because the buildbot only