[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]> ___ ___

[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]> __

[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]> __

[issue2854] Add gestalt back into Python 3.0

2008-05-15 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Here's a patch. I moved gestalt to Modules and renamed it _gestalt. I inlined the few lines of pymactoolbox that I needed, so that doesn't have to come back. -- keywords: +patch Added file: http://bugs.python.org/file10336/gestalt_

[issue2854] Add gestalt back into Python 3.0

2008-05-14 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: On Wed, May 14, 2008 at 6:01 PM, Benjamin Peterson <[EMAIL PROTECTED]> wrote: > > Benjamin Peterson <[EMAIL PROTECTED]> added the comment: > > I feel kinda bad about removing the module without noting how it was > used in platform.py, so I'll de

[issue2854] Add gestalt back into Python 3.0

2008-05-14 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I feel kinda bad about removing the module without noting how it was used in platform.py, so I'll deal with this. -- assignee: -> benjamin.peterson __ Tracker <[EMAIL PROTECTED]>

[issue2854] Add gestalt back into Python 3.0

2008-05-14 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: On Wed, May 14, 2008 at 1:37 PM, Benjamin Peterson <[EMAIL PROTECTED]> wrote: > > Benjamin Peterson <[EMAIL PROTECTED]> added the comment: > > Does it have to be public? How about _gestalt? > That's fine by me. If someone really cares enough th

[issue2854] Add gestalt back into Python 3.0

2008-05-14 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Does it have to be public? How about _gestalt? -- nosy: +benjamin.peterson __ Tracker <[EMAIL PROTECTED]> __ __

[issue2854] Add gestalt back into Python 3.0

2008-05-14 Thread Brett Cannon
Brett Cannon <[EMAIL PROTECTED]> added the comment: Actually, the plat-darwin comment is not right if the original C version is kept since that would just end up in Modules. __ Tracker <[EMAIL PROTECTED]> ___

[issue2854] Add gestalt back into Python 3.0

2008-05-14 Thread Brett Cannon
New submission from Brett Cannon <[EMAIL PROTECTED]>: gestalt was removed as part of the stdlib cleanup for Mac code. But it turns out that gestalt is one of those modules that is just needed. Either the original version needs to be added back in or a ctypes version needs to be implemented. Ei