[issue2337] Backport oct() and hex() to use __index__

2008-05-17 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I have reverted this. See mail.python.org/pipermail/python-checkins/2008-May/069843.html. -- resolution: fixed -> status: closed -> pending __ Tracker <[EMAIL PROTECTED]> <h

[issue2901] "error: can't allocate region" from mmap() when receiving big chunk of data

2008-05-17 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- type: -> crash __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2901> __ ___ Python-b

[issue2902] tkinter uses MacOS

2008-05-17 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: A few days ago I removed the MacOS module. I didn't realize that it was used in Tkinter until today. It seems the module is only used in one spot: if _MacOS and hasattr(_MacOS, 'SchedParams'):

[issue2854] Add gestalt back into Python 3.0

2008-05-18 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file10370/gestalt_is_back2.patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2349] Py3K warn against assigning to True/False

2008-05-18 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: benjamin.peterson -> brett.cannon __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2349> __ _

[issue1257] atexit errors should result in nonzero exit code

2008-05-18 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I'm assigning this to Christian because he was doing the GHOP review. -- assignee: gvanrossum -> christian.heimes nosy: +benjamin.peterson __ Tracker <[EMAIL PROTECTED]> <

[issue1322] platform.dist() has unpredictable result under Linux

2008-05-18 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Christian was reviewing this for GHOP. -- assignee: georg.brandl -> christian.heimes nosy: +benjamin.peterson __ Tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue2910] Remove plat-mac from 3.0

2008-05-18 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Well, I reimplemented gestalt as C (#2854), so I imagine it should go in Modules. -- nosy: +benjamin.peterson __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2911] rewrite test_struct as a unittest

2008-05-18 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: Perhaps a bigger bug day task? -- components: Tests keywords: easy messages: 67051 nosy: benjamin.peterson priority: low severity: normal status: open title: rewrite test_struct as a unittest type: feature r

[issue2912] let platform.uname try harder

2008-05-18 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: Sometimes os.uname (which is used to bootstrap platform.uname) can return 'unknown' for some items. The fallback code in platform.uname can usually fill these blanks in. However, this is only used when os.uname is not p

[issue2912] let platform.uname try harder

2008-05-18 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- versions: +Python 2.6 __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2912> __ ___ Python-bugs

[issue2912] let platform.uname try harder

2008-05-18 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- components: +Library (Lib) priority: -> low __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2912> __ _

[issue615772] Tkinter.Misc has no __contains__ method

2008-05-19 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- type: -> feature request Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue615772> ___

[issue2854] Add gestalt back into Python 3.0

2008-05-19 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This is just a reminder to myself that when this is checked in, I need to unblock and merge r63460 and r63464. __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2921] enable embedding: declare/#define only py* symbols in #includes

2008-05-19 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- components: +Interpreter Core -None __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2921> __ __

[issue1775025] zipfile: Allow reading duplicate filenames

2008-05-19 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- type: -> feature request versions: +Python 2.6 _ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2621] rename test_support to support

2008-05-20 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Tue, May 20, 2008 at 2:33 AM, Georg Brandl <[EMAIL PROTECTED]> wrote: > > Georg Brandl <[EMAIL PROTECTED]> added the comment: > > Should be safe to apply now, Benjamin. Will do today. -- Cheers, Benja

[issue2621] rename test_support to support

2008-05-20 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Done in r63512. -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2621> __ _

[issue2932] Documenting Python: Syntax"

2008-05-20 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> duplicate status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs

[issue2933] "Documenting Python: Syntax" bug

2008-05-20 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks for the report. However, since we have moved to a new doc format (reST), we are not maintaining the 2.5 docs. -- nosy: +benjamin.peterson resolution: -> wont fix status: open -> closed versions: +Python 2.5

[issue2783] ctypes.util.find_library() doesn't find OS X .bundle or .so libraries

2008-05-21 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2783> __ ___ Python-b

[issue2915] PyObject_IsInstance() doesn't find bases named in type(name, bases, dict)

2008-05-21 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> invalid status: open -> closed __ Tracker <[EMAIL PROTECTED]> <http://bugs

[issue2775] Implement PEP 3108

2008-05-23 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Fri, May 23, 2008 at 7:49 AM, Quentin Gallet-Gilles <[EMAIL PROTECTED]> wrote: > > Quentin Gallet-Gilles <[EMAIL PROTECTED]> added the comment: > > While working on the commands module removal, I found t

[issue2538] memoryview of bytes is not readonly

2008-05-23 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: -> critical type: -> behavior __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2538> __ __

[issue2538] memoryview of bytes is not readonly

2008-05-23 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- nosy: +benjamin.peterson __ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2538> __ ___ Python

[issue2619] Document PEP 3118

2008-05-23 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Upon further inspection, it seems none of the new buffer protocol is documented. (The old functions are still present in the 3.0 docs.) -- title: Document memoryview -> Document PEP 3118 _

[issue2507] Exception state lives too long in 3.0

2008-05-24 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: For time being, should r62847 be reverted? -- nosy: +benjamin.peterson __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2958] update Lib/test/README

2008-05-24 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: A good bug day task: Lib/test/README is a bit dated. It still talks about old-style Python tests which have been almost completely removed in 2.6 (and none more should be written.) The assert* methods of unittest should also be st

[issue2966] pydoc doesnt show 'from module import identifier' in the docs

2008-05-25 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I think he means that if you use "from m import x" to import part of module interface, "x" is not shown in the generated doc. -- nosy: +benjamin.peterson __ Tracker

[issue2965] Update interface of weakref dictionaries

2008-05-25 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Attaching patch. -- keywords: +patch nosy: +benjamin.peterson Added file: http://bugs.python.org/file10441/weakref_py3k.patch __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2572] 3.0 pickle docs -- what about old-style classes?

2008-05-25 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Alexandre, would you mind fixing up the docs? -- nosy: +benjamin.peterson __ Tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2854] Add gestalt back into Python 3.0

2008-05-29 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: _gestalt was added in 63795. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue2775] Implement PEP 3108

2008-05-29 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- dependencies: -Add gestalt back into Python 3.0 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue1779233] PyThreadState_SetAsyncExc and the main thread

2008-05-29 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- type: -> behavior ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1779233> ___ __

[issue708007] TelnetPopen3, TelnetBase, Expect split

2008-05-29 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: out of date -> status: closed -> open versions: +Python 2.6 -Python 2.2 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.p

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

2008-05-30 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> duplicate status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

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

2008-05-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Your own: #3013. :) -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

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

2008-05-30 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- keywords: +easy priority: -> high ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue775544] Tk.quit leads to crash in python.exe

2008-06-01 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- type: -> crash ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue775544> ___ ___

[issue2507] Exception state lives too long in 3.0

2008-06-01 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- superseder: -> Lexical exception handlers ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue2833] __exit__ silences the active exception

2008-06-01 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- superseder: -> Lexical exception handlers ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3021] Lexical exception handlers

2008-06-01 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3021> ___

[issue2775] Implement PEP 3108

2008-06-01 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- dependencies: -Remove htmllib use in the stdlib ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2997] PyNumberMethods has left-over fields in Py3

2008-06-01 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> out of date status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue1758146] Crash in PyObject_Malloc

2008-06-03 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- type: -> crash ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue1758146> ___ ___

[issue3042] Add PEP 8 compliant aliases to threading module

2008-06-05 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Is this what you were looking for? (in the patch) What I did could also be done with metaclasses, but I thought that would be overkill. Warning: this patch causes test threading to crash when run with the -3 flag. -- ke

[issue3042] Add PEP 8 compliant aliases to threading module

2008-06-05 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Attaching a patch which fixes everything. Added file: http://bugs.python.org/file10523/new_threading_api2.patch ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3038] Return results from Python callbacks to Tcl as Tcl objects, please backport it.

2008-06-05 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> loewis nosy: +loewis ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3042] Add PEP 8 compliant aliases to threading module

2008-06-05 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Thu, Jun 5, 2008 at 8:56 PM, Nick Coghlan <[EMAIL PROTECTED]> wrote: > > Nick Coghlan <[EMAIL PROTECTED]> added the comment: > > The code changes in the patch look pretty good to me (although you > pro

[issue3050] Implement PEP 371: multiprocessing module

2008-06-06 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- dependencies: +Add PEP 8 compliant aliases to threading module, Thread local storage and PyGILState_* mucked up by os.fork() ___ Python tracker <[EMAIL PROTECTED]> <http://

[issue3052] Mac Modules failing to compile

2008-06-06 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: On Mac 10.4 PPC: building 'MacOS' extension gcc -fno-strict-aliasing -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I. -I/temp/python/trunk/./Include -I/temp/python/trunk/./Mac/Include -I. -IInclude -I./Include -I/u

[issue2337] Backport oct() and hex() to use __index__

2008-06-06 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This was rejected by Guido. -- resolution: -> rejected status: pending -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3052] Mac Modules failing to compile

2008-06-06 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This is 10.4. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3052> ___ ___ Python

[issue2912] let platform.uname try harder

2008-06-07 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks for volunteering, James! I think you misunderstood the task. Do you see how in platform's uname, it only tries to find missing values for os.uname if os.uname doesn't exist? Sometimes os.uname exists, but it doesn&#

[issue3052] Mac Modules failing to compile

2008-06-07 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: It is fixed. Thanks. -- status: pending -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3048] getsizeof incorrect for Unicode strings

2008-06-07 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- type: -> behavior ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3048> ___ ___

[issue2349] Py3K warn against assigning to True/False

2008-06-07 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Georg, can I apply? -- assignee: brett.cannon -> georg.brandl nosy: +georg.brandl ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3060] Warn about tuple parameters

2008-06-07 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: This patch adds Py3k warnings to nested tuple parameters. -- assignee: georg.brandl components: Interpreter Core files: tuple_parameters_warn.patch keywords: patch messages: 67820 nosy: benjamin.peterson, georg.brandl se

[issue2349] Py3K warn against assigning to True/False

2008-06-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Here's a much better patch that delegates checking to a helper. Added file: http://bugs.python.org/file10551/bool_assign7.patch ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue3060] Warn about tuple parameters

2008-06-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: > Why not warn in the AST, like for the other syntax-related changes? because I was reading through symtable.c at the time. :) Anyway, here's a better patch. Added file: http://bugs.python.org/file10553/tuple_paramete

[issue2349] Py3K warn against assigning to True/False

2008-06-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Done in r64044. -- resolution: accepted -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3060] Warn about tuple parameters

2008-06-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Done with r64045. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue2874] Remove use of the stat module in the stdlib

2008-06-08 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Can't you just inherit PyStructSequence with tp_base? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2876] Write UserDict fixer for 2to3

2008-06-08 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: release blocker -> high ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue2775] Implement PEP 3108

2008-06-08 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- dependencies: -Remove cl usage from aifc, Write UserDict fixer for 2to3 ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue2618] Tile module: Add support for themed widgets

2008-06-08 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- resolution: -> duplicate status: open -> closed superseder: -> Ttk support for Tkinter ___ Python tracker <[EMAIL PROTECTED]> <http://b

[issue3064] new turtle module for Python 3.0

2008-06-08 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- assignee: -> loewis ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3064> ___ __

[issue2517] Error when printing an exception containing a Unicode string

2008-06-09 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Mon, Jun 9, 2008 at 8:40 AM, Simon Cross <[EMAIL PROTECTED]> wrote: > > Simon Cross <[EMAIL PROTECTED]> added the comment: > > One of the examples Christoph tried was > > unicode(Exception(u'

[issue2517] Error when printing an exception containing a Unicode string

2008-06-09 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Mon, Jun 9, 2008 at 2:04 PM, David Fraser <[EMAIL PROTECTED]> wrote: > > David Fraser <[EMAIL PROTECTED]> added the comment: > > So I've got a follow-up patch that adds tp_unicode. > Caveat that I&#

[issue3050] Implement PEP 371: multiprocessing module

2008-06-09 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I'm attaching my version of the docs. (Jesse, I did fix the Sphinx warnings and some other problems I noticed.) Georg, if you could cast your expert reST eye over them, I'd be much obliged. -- assignee: -> ben

[issue3050] Implement PEP 371: multiprocessing module

2008-06-09 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- keywords: +patch Added file: http://bugs.python.org/file10569/multiprocessing_docs.patch ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3071] The ValueError raised by failing to unpack sequence should have more information.

2008-06-09 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Would you like to submit a patch? -- nosy: +benjamin.peterson priority: -> low ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3074] test_asyncore is failing

2008-06-10 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: test_asyncore test_closeall (test.test_asyncore.HelperFunctionTests) ... ok test_closeall_default (test.test_asyncore.HelperFunctionTests) ... ok test_compact_traceback (test.test_asyncore.HelperFunctionTests) ... ok test_rea

[issue3050] Implement PEP 371: multiprocessing module

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Do this: svn revert -R .; rm Doc/library/multiprocessing.rst rm Doc/includes/mp*.py Then apply just Georg's patch. That should work. ___ Python tracker <[EMAIL PROTECTED]> <ht

[issue3050] Implement PEP 371: multiprocessing module

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: How much work needs to be done to port this to Py3k? ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3050] Implement PEP 371: multiprocessing module

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Tue, Jun 10, 2008 at 3:50 PM, Jesse Noller <[EMAIL PROTECTED]> wrote: > > Jesse Noller <[EMAIL PROTECTED]> added the comment: > > Richard mentioned it should just work after being run though lib2to3 Ex

[issue3076] test_xmlrpc_net fails on Darwin

2008-06-10 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: -> release blocker ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue3042] Add PEP 8 compliant aliases to threading module

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Ok. Pending your acceptance, I'll apply after docs+tests. Added file: http://bugs.python.org/file10576/new_threading_api3.patch ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue2912] let platform.uname try harder

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: >Ah, ok, the code under except AttributeError: gives me some good ideas. >Should I use the methods utilized there to extract information from the >system? Right on! You don't need to write any new code, just make sur

[issue3076] test_xmlrpc_net fails on Darwin

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I agree. I've temporarily disabled the offending test, but we should fix this soon. -- nosy: +benjamin.peterson priority: release blocker -> critical resolution: invalid -> _

[issue2234] cygwinccompiler.py fails for latest MinGW releases.

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This seems to be the same as #3013. -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

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

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: This seems to be the same as #2234. -- nosy: +benjamin.peterson superseder: -> cygwinccompiler.py fails for latest MinGW releases. ___ Python tracker <[EMAIL PROTE

[issue3076] test_xmlrpc_net fails on Darwin

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Tue, Jun 10, 2008 at 4:27 PM, Amaury Forgeot d'Arc <[EMAIL PROTECTED]> wrote: > > Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: > > But (try a Google search) xmlrpc.com is the main

[issue3076] test_xmlrpc_net fails

2008-06-10 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- title: test_xmlrpc_net fails on Darwin -> test_xmlrpc_net fails ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue2885] Create the urllib package

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Jeremy, will you have time for this before the betas on Wensday, or should someone else do it? -- nosy: +benjamin.peterson ___ Python tracker <[EMAIL PROTECTED]> <http://

[issue2976] test_pydoc fails in trunk

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: It seems Amaury fixed the problem with r64095. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue1530559] struct.pack raises TypeError where it used to convert

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I ran into this issue converting test_struct to unittest. I would fix it, but I'm not sure exactly what is intended. I'm raising priority. -- nosy: +benjamin.peterson priority: no

[issue2911] rewrite test_struct as a unittest

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks very much. Reviewed and committed in r64097. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue2911] rewrite test_struct as a unittest

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I'm sorry. I meant r64102. ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2911> ___

[issue3076] test_xmlrpc_net fails

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: xmlrpc.com is backup so I reenabled the test. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3021] Lexical exception handlers

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Guido has given the go ahead on this. I will apply in about 8 hours (after some sleep). -- assignee: -> benjamin.peterson resolution: -> accepted ___ Python tracker <[EMAIL PR

[issue3050] Implement PEP 371: multiprocessing module

2008-06-10 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Congrats, you're in! See r64104 in the trunk. -- resolution: -> accepted status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http:/

[issue3050] Implement PEP 371: multiprocessing module

2008-06-11 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Please see Georg's Python-dev message about importing multiprocessing. -- status: closed -> open ___ Python tracker <[EMAIL PROTECTED]> <http://bu

[issue2911] rewrite test_struct as a unittest

2008-06-11 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Wed, Jun 11, 2008 at 7:33 AM, Giampaolo Rodola' <[EMAIL PROTECTED]> wrote: > > Giampaolo Rodola' <[EMAIL PROTECTED]> added the comment: > > In case you're interested there are a bunch of othe

[issue3050] Implement PEP 371: multiprocessing module

2008-06-11 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: Added file: http://bugs.python.org/file10584/py3k_failing.diff ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.pytho

[issue3050] Implement PEP 371: multiprocessing module

2008-06-11 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: On Wed, Jun 11, 2008 at 9:20 AM, Tim Golden <[EMAIL PROTECTED]> wrote: > > Tim Golden <[EMAIL PROTECTED]> added the comment: > > The _multiprocessing module is not building under Windows at the

[issue3021] Lexical exception handlers

2008-06-11 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Commited in r64121. -- status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.py

[issue2507] Exception state lives too long in 3.0

2008-06-11 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Solved by r64121. -- resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue2833] __exit__ silences the active exception

2008-06-11 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Fixed in r64121. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker <[EMAIL PROTECTED]> <http://bugs

[issue3050] Implement PEP 371: multiprocessing module

2008-06-11 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Thanks very much Tim and Trent. I've merged multiprocessing into Py3k and added the Windows files. I hope that works. -- status: open -> closed ___ Python tracker <[EMAIL

<    1   2   3   4   5   6   7   8   9   10   >