[issue4186] type() doesn't accept bases and dict keyword arguments

2008-10-23 Thread Barry A. Warsaw
New submission from Barry A. Warsaw [EMAIL PROTECTED]: According to bug 1683368, Python 3.0's object.__init__() no longer accepts arbitrary keyword arguments. What's new in Python 2.6 says the same thing has been implemented in 2.6. However, type() no longer accepts /any/ keyword arguments,

[issue4178] codecs: Documentation Inconsistency

2008-10-23 Thread Walter Dörwald
Walter Dörwald [EMAIL PROTECTED] added the comment: I agree that the documentation should be fixed to read encode/decode instead of encoder/decoder. ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4178 ___

[issue4049] IDLE does not open too

2008-10-23 Thread nut
nut [EMAIL PROTECTED] added the comment: would you help me to open IDLE it can't open in 2.6 version but can use python in terminal my OS is MacOSX. I'm the new one in python so, i need you help very much. -- components: +IDLE nosy: +zeromtmu -Chris_L, Raj, giampaolo.rodola, loewis,

[issue4174] Performance optimization for min() and max() over lists

2008-10-23 Thread Hrvoje Nikšić
Hrvoje Nikšić [EMAIL PROTECTED] added the comment: Note that the item retrieved by PyList_GET_ITEM must be increffed before being passed to the function. Otherwise mutating the list can remove the item from the list and destroy the underlying object, in which case the current maxitem can refer

[issue3518] multiprocessing: BaseManager.from_address documented but doesn't exist

2008-10-23 Thread Mart Sõmermaa
Mart Sõmermaa [EMAIL PROTECTED] added the comment: The documentation should be amended as follows: Running the following commands creates a server for a single shared queue which remote clients can access: from multiprocessing.managers import BaseManager import Queue queue = Queue.Queue()

[issue3518] multiprocessing: BaseManager.from_address documented but doesn't exist

2008-10-23 Thread Mart Sõmermaa
Mart Sõmermaa [EMAIL PROTECTED] added the comment: Also, it would be helpful to elaborate a bit more on: major: * how to implement a queue that is shared both locally and remotely (i.e. n local processes access the queue as well as m remote processes) minor: * blocking (assumption: q.get()

[issue4177] Crash in MIMEText on FreeBSD

2008-10-23 Thread Sérgio Surkamp
Sérgio Surkamp [EMAIL PROTECTED] added the comment: Testing on Linux: $ ulimit -m 128000 $ ulimit -v 196000 $ python test_MIMEText.py [...] Traceback (most recent call last): File test_MIMEText.py, line 23, in module txt = MIMEText(buffer, _subtype=plain, _charset=iso-8859-1) File

[issue4178] codecs: Documentation Inconsistency

2008-10-23 Thread Walter Dörwald
Walter Dörwald [EMAIL PROTECTED] added the comment: Fixed in r67005 (trunk) and r67006 (pk3k). -- resolution: - fixed status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4178 ___

[issue4187] IDLE will not start.

2008-10-23 Thread ldehkire
New submission from ldehkire [EMAIL PROTECTED]: IDLE will not start. I have installed python via the python-2.6-macosx.dmg image found on http://www.python.org/download/. I didn't find any resolutions in bugs.python.org, but did note that you are having some trouble with tk (as discussed in

[issue3997] zipfile and winzip

2008-10-23 Thread vali
vali [EMAIL PROTECTED] added the comment: I could verify that the patch works with both the Windows Compress utility, WinZip and 7zip. Thank you! ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue3997 ___

[issue4187] IDLE will not start.

2008-10-23 Thread nut
nut [EMAIL PROTECTED] added the comment: it same as me. If you can open that please help me. -- nosy: +zeromtmu ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4187 ___

[issue4187] IDLE will not start.

2008-10-23 Thread Guilherme Polo
Guilherme Polo [EMAIL PROTECTED] added the comment: Closing this in favor of issue4017. Check if anything there works for you, or add something new. -- nosy: +gpolo resolution: - duplicate status: open - closed ___ Python tracker [EMAIL PROTECTED]

[issue4184] Remove use of private attributes in smtpd

2008-10-23 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' [EMAIL PROTECTED]: -- nosy: +giampaolo.rodola ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4184 ___ ___ Python-bugs-list

[issue4171] SSL handshake fails after TCP connection in getpeername()

2008-10-23 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' [EMAIL PROTECTED]: -- nosy: +giampaolo.rodola, janssen ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4171 ___ ___

[issue4017] Tkinter cannot find Tcl/Tk on Mac OS X

2008-10-23 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Assigning to Ronald. I all that needs to be done, it have the installers built correctly. -- assignee: - ronaldoussoren nosy: +ronaldoussoren ___ Python tracker [EMAIL PROTECTED]

[issue4188] Lib/threading.py causes infinite recursion when running as verbose

2008-10-23 Thread Guilherme Polo
New submission from Guilherme Polo [EMAIL PROTECTED]: Lib/threading.py gets into infinite recursion while testing (or using) it with verbose set. This didn't happen before because Thread.__started didn't use to be an Event, but now it is. Typical situation: _DummyThread calls

[issue4189] Tilde compression isn't applied in TOC

2008-10-23 Thread Jeffrey Harris
New submission from Jeffrey Harris [EMAIL PROTECTED]: When Sphinx builds TOC nodes, it isn't applying the tilde rule (use only the last dotted name). For example compare the heading for:

[issue4190] IDLE (2.6) doesn't stay open

2008-10-23 Thread Andrew Shaw
New submission from Andrew Shaw [EMAIL PROTECTED]: Downloaded Python 2.6 for Mac OS X. When launching IDLE.app, it puts the icon on the dock for a second, then disappears. Nothing else ever happens. X11 does not open either. -- components: IDLE messages: 75151 nosy: andrew.t.shaw7

[issue4190] IDLE (2.6) doesn't stay open

2008-10-23 Thread Benjamin Peterson
Benjamin Peterson [EMAIL PROTECTED] added the comment: Duplicate of #4017. -- nosy: +benjamin.peterson resolution: - duplicate status: open - closed ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4190

[issue4120] Do not embed manifest files in *.pyd when compiling with MSVC

2008-10-23 Thread Mark Hammond
Mark Hammond [EMAIL PROTECTED] added the comment: I don't see a problem with this and can see how it would help with private assemblies. -- nosy: +mhammond ___ Python tracker [EMAIL PROTECTED] http://bugs.python.org/issue4120