[issue3085] chapter 17.1.3.5 'Replacing os.popen*' in the Python library reference contains an error

2008-06-11 Thread Jan Huelsbergen
New submission from Jan Huelsbergen <[EMAIL PROTECTED]>: the 'from' examples contain non-keyword args after keyword args: pipe = os.popen(cmd, mode='r', bufsize) should be pipe = os.popen(cmd, 'r', bufsize) and pipe = os.popen(cmd, mode='w', bufsize) should be pipe = os.popen(cmd, 'w', buf

[issue2918] Merge StringIO/cStringIO in 3.0

2008-06-11 Thread Alexandre Vassalotti
Alexandre Vassalotti <[EMAIL PROTECTED]> added the comment: Committed in r64154. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue2917] merge pickle and cPickle in 3.0

2008-06-11 Thread Alexandre Vassalotti
Alexandre Vassalotti <[EMAIL PROTECTED]> added the comment: Committed in r64152. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ _

[issue2775] Implement PEP 3108

2008-06-11 Thread Alexandre Vassalotti
Alexandre Vassalotti <[EMAIL PROTECTED]> added the comment: Done with pickle and stringio. -- dependencies: -Merge StringIO/cStringIO in 3.0, merge pickle and cPickle in 3.0 ___ Python tracker <[EMAIL PROTECTED]> __

[issue1683] Thread local storage and PyGILState_* mucked up by os.fork()

2008-06-11 Thread Adam Olsen
Adam Olsen <[EMAIL PROTECTED]> added the comment: Updated version of roudkerk's patch. Adds the new function to pythread.h and is based off of current trunk. Note that Parser/intrcheck.c isn't used on my box, so it's completely untested. roudkerk's original analysis is correct. The TLS is nev

[issue3084] sys.exit() called from optparse - bad, bad, bad

2008-06-11 Thread Skip Montanaro
Skip Montanaro <[EMAIL PROTECTED]> added the comment: I originally sent this by email but never saw it pop up. I eventually submitted via the web. -- superseder: -> sys.exit() called from optparse - bad, bad, bad ___ Python tracker <[EMAIL PROTECTE

[issue3084] sys.exit() called from optparse - bad, bad, bad

2008-06-11 Thread Skip Montanaro
Changes by Skip Montanaro <[EMAIL PROTECTED]>: -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list

[issue1683] Thread local storage and PyGILState_* mucked up by os.fork()

2008-06-11 Thread Adam Olsen
Adam Olsen <[EMAIL PROTECTED]> added the comment: Incidentally, it doesn't seem necessary to reinitialize the lock. Posix duplicates the lock, so if you hold it when you fork your child will be able to unlock it and use it as normal. Maybe there's some non-Posix behaviour or something even more

[issue3086] sys.maxsize not available by using the latest Win32 build

2008-06-11 Thread Giampaolo Rodola'
New submission from Giampaolo Rodola' <[EMAIL PROTECTED]>: By using: http://www.python.org/dev/daily-msi/python-2.6.14041.msi C:\>C:\python26\python Python 2.6a3 (r26a3:62864, May 9 2008, 14:16:26) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more

[issue1819] Speed hack for function calls with named parameters

2008-06-11 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: Attaching a version that's a little faster and cleaner with PySequence_Fast_ITEMS. -- nosy: +rhettinger Added file: http://bugs.python.org/file10596/namedparam3.patch ___ Python tracker <[EMAIL

[issue2775] Implement PEP 3108

2008-06-11 Thread Barry A. Warsaw
Barry A. Warsaw <[EMAIL PROTECTED]> added the comment: We've got what we've got for the first betas. -- nosy: +barry priority: release blocker -> critical ___ Python tracker <[EMAIL PROTECTED]> __

[issue3008] Let bin() show floats

2008-06-11 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: Saving this for after the first beta goes out. ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue2919] Merge profile/cProfile in 3.0

2008-06-11 Thread Barry A. Warsaw
Barry A. Warsaw <[EMAIL PROTECTED]> added the comment: This didn't get done for the betas, but we're still going to release. Knocking it down to critical. -- nosy: +barry priority: release blocker -> critical ___ Python tracker <[EMAIL PROTECTED]>

[issue2885] Create the urllib package

2008-06-11 Thread Barry A. Warsaw
Barry A. Warsaw <[EMAIL PROTECTED]> added the comment: This didn't get done for the first beta. Please try to do it asap after the beta releases. -- nosy: +barry priority: release blocker -> critical ___ Python tracker <[EMAIL PROTECTED]>

[issue3087] Clean up Demos and Tools

2008-06-11 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: A good bug day task: Demos and to some extent Tools has a lot of rubbish in 3.0 that probably doesn't work with all the module removals and such. Somebody should go through them and chuck all the old stuff. -- components: Demos

[issue2849] Remove usage of rfc822 from the stdlib

2008-06-11 Thread Barry A. Warsaw
Barry A. Warsaw <[EMAIL PROTECTED]> added the comment: Reviewed and applied to Python 3.0 in r64161. The patch did not apply cleanly for 2.6. I'm going to bump this down to critical for the first betas. Humberto, can you back port it to Python 2.6? -- nosy: +barry priority: release bl

[issue2630] repr() should not escape non-ASCII characters

2008-06-11 Thread Atsuo Ishimoto
Atsuo Ishimoto <[EMAIL PROTECTED]> added the comment: Great, thank you! ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing l

[issue2885] Create the urllib package

2008-06-11 Thread Senthil
Senthil <[EMAIL PROTECTED]> added the comment: I shall give it a try and come out with results asap. Shall take Facundo's help (my GSoC mentor). -- nosy: +orsenthil ___ Python tracker <[EMAIL PROTECTED]>

[issue2917] merge pickle and cPickle in 3.0

2008-06-11 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I'm sorry. I had to revert this. -- nosy: +benjamin.peterson priority: release blocker -> critical status: closed -> open ___ Python tracker <[EMAIL PROTECTED]>

[issue2848] Remove mimetools usage from the stdlib

2008-06-11 Thread Barry A. Warsaw
Barry A. Warsaw <[EMAIL PROTECTED]> added the comment: This patch works for me in Python 3.0. It's basically Humberto's patch with the two failing tests fixed. Added file: http://bugs.python.org/file10597/applied_mimetools.patch ___ Python tracker <[EMAIL PR

[issue2848] Remove mimetools usage from the stdlib

2008-06-11 Thread Barry A. Warsaw
Changes by Barry A. Warsaw <[EMAIL PROTECTED]>: Removed file: http://bugs.python.org/file10597/applied_mimetools.patch ___ Python tracker <[EMAIL PROTECTED]> ___ __

[issue2848] Remove mimetools usage from the stdlib

2008-06-11 Thread Barry A. Warsaw
Barry A. Warsaw <[EMAIL PROTECTED]> added the comment: Actually, try this one. Added file: http://bugs.python.org/file10598/applied_mimetools.patch ___ Python tracker <[EMAIL PROTECTED]> _

[issue2848] Remove mimetools usage from the stdlib

2008-06-11 Thread Barry A. Warsaw
Barry A. Warsaw <[EMAIL PROTECTED]> added the comment: r64164 in Python 3.0. This doesn't apply cleanly to Python 2.6; could someone please back port it? -- priority: release blocker -> critical ___ Python tracker <[EMAIL PROTECTED]>

[issue3088] test_multiprocessing hangs on OS X 10.5.3

2008-06-11 Thread Barry A. Warsaw
New submission from Barry A. Warsaw <[EMAIL PROTECTED]>: For me, test_multiprocessing hangs consistently on OS X 10.5.3. It passes just fine on Ubuntu 8.04. -- components: Library (Lib) messages: 68053 nosy: barry priority: release blocker severity: normal status: open title: test_multi

[issue3089] All 3.0 buildbots are red

2008-06-11 Thread Barry A. Warsaw
New submission from Barry A. Warsaw <[EMAIL PROTECTED]>: Subject says it all. None of the 3.0 buildbots are passing. -- components: Build messages: 68054 nosy: barry priority: release blocker severity: normal status: open title: All 3.0 buildbots are red versions: Python 3.0 __

[issue3088] test_multiprocessing hangs on OS X 10.5.3

2008-06-11 Thread Ismail Donmez
Ismail Donmez <[EMAIL PROTECTED]> added the comment: I can confirm this on Leopard too. -- nosy: +cartman ___ Python tracker <[EMAIL PROTECTED]> ___ ___

[issue3026] mmap broken with large files on 64bit system

2008-06-11 Thread Georg Brandl
Changes by Georg Brandl <[EMAIL PROTECTED]>: -- priority: -> critical versions: +Python 3.0 ___ Python tracker <[EMAIL PROTECTED]> ___

[issue3013] disutils fails with GNU ld (GNU Binutils) 2.18.50.20080523

2008-06-11 Thread Georg Brandl
Changes by Georg Brandl <[EMAIL PROTECTED]>: -- resolution: -> duplicate status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> ___

[issue2419] Remove all IRIX dependant modules from aifc module

2008-06-11 Thread Georg Brandl
Changes by Georg Brandl <[EMAIL PROTECTED]>: -- resolution: -> duplicate status: open -> closed superseder: -> Remove cl usage from aifc ___ Python tracker <[EMAIL PROTECTED]> __

<    1   2