[issue6919] Link CRT Statically

2009-09-15 Thread Henri Hein
New submission from Henri Hein : Suggestion: Link the CRT statically into Python26.dll/PythonNN.dll and compiled .PYD files, at least when using the Microsoft compiler. There has been a number of bugs related to the msvcrt.dll, msvcr90.dll, etc. Many of these would go away if the CRT was

[issue6879] misstatement in example explanation using raise

2009-09-15 Thread Ezio Melotti
Ezio Melotti added the comment: The original was: >>> raise NameError, 'HiThere' Since now this form is deprecated, I would remove that paragraph altogether. Instead, that paragraph should be replaced with: "The sole argument to raise indicates the exception to be raised. This must be either an

[issue6881] incorrect signature in doc for PyByteArray_Resize

2009-09-15 Thread Ezio Melotti
Ezio Melotti added the comment: The PyByteArrayIter_Type is also missing, and the arg names of several functions don't match the ones in the C source in Objects/bytesobject.c . It might also be a good idea to add sub-headers in the doc to group these functions in the same way they are grouped in

[issue6900] Sub-optimal "Locate" button behaviour in Windows CHM file

2009-09-15 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti priority: -> low ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue6910] 1-char typo in language reference doc of import

2009-09-15 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed in r74815 (py3k), thanks! -- assignee: georg.brandl -> ezio.melotti nosy: +ezio.melotti priority: -> low resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue3561] Windows installer should add Python and Scripts directories to the PATH environment variable

2009-09-15 Thread Sridhar Ratnakumar
Changes by Sridhar Ratnakumar : -- nosy: +srid ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pytho

[issue6516] reset owner/group to root for distutils tarballs

2009-09-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: #6856 was added by Lars, so I can move forward and work on this one. -- resolution: -> accepted ___ Python tracker ___ ___

[issue6860] Inconsistent naming of custom command in setup.py help output

2009-09-15 Thread Tarek Ziadé
Tarek Ziadé added the comment: Right, thanks for noticing this. Here's the change I am going to make: The code will use command.get_command_name() *everywhere* for the help display. This method implemented in Command does the following: - if the attribute "command_name" is present, it is re

[issue6907] xmlrpclib.make_connection() is not thread safe

2009-09-15 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Ah yes. Sorry, I'm no good with this system. Thanks. -- ___ Python tracker ___ ___ Python-b

[issue6864] IDLE 2.6.1 locks up on Mac OS 10.6

2009-09-15 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- priority: -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue6918] ctypes compilation error on SnowLeopard

2009-09-15 Thread Ronald Oussoren
New submission from Ronald Oussoren : When I compile the trunk on MacOS X 10.6 I get a compile (or rather link) error in ctypes: ld: in build/temp.macosx-10.5-fat3- 2.7/Users/ronald/Projects/python/python-trunk- clean/Modules/_ctypes/libffi_osx/powerpc/ppc-darwin.o, unsupported encoding in FDE

[issue6851] urllib.urlopen crashes in a thread on Snow Leopard

2009-09-15 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- priority: -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: ht

[issue6872] Support system readline on OS X 10.6

2009-09-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: I've added an updated patch to issue 6877 that implements the same 1-based indexing as GNU's readline and also adds a note to the documentation to warn users about the possibility of linking the readline module to libedit. That patch would, possibly with cl

[issue6877] enable compilation of readline module on Mac OS X 10.5 and 10.6

2009-09-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: The attached patch is a slightly cleaner version of your patch. What I don't like is that I'm also using runtime detection of libedit, I'd prefer compile-time detection but that doesn't seem possible without doing that dtection in setup.py. My changes w.r.t

[issue6851] urllib.urlopen crashes in a thread on Snow Leopard

2009-09-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: This probably means that the ctypes code in urllib.py needs to be ported to C, although we won't know if that helps until said C code is written :-( Doing that would be a good idea anyway, while trying to create a workaround I noticed that the ctypes code i

[issue6872] Support system readline on OS X 10.6

2009-09-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: purpleidea : Whether or not indexes should be 0-based in general is beyond the scope of this issue. -- ___ Python tracker ___

[issue6851] urllib.urlopen crashes in a thread on Snow Leopard

2009-09-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: It seems that CoreFoundation doesn't like being loaded on a secondairy thread: #0 0x7fff8301bb90 in __CFInitialize () #1 0x7fff5fc0d5ce in __dyld__ZN16ImageLoaderMachO11doImageInitERKN11ImageLoader11LinkContextE () #2 0x7fff5fc0d607 in __dyl

[issue6441] Tkinter cannot find *64 bit* Tcl/Tk on Mac OS X

2009-09-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: I just commited a fix for this, the patch is present in all 4 active branches (2.6, 2.7, 3.1, 3.2) -- resolution: -> fixed stage: -> committed/rejected status: open -> closed type: crash -> behavior ___ Python tr

[issue6245] Add "intel" universal architecture on OSX

2009-09-15 Thread Ronald Oussoren
Changes by Ronald Oussoren : -- status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue6245] Add "intel" universal architecture on OSX

2009-09-15 Thread Ronald Oussoren
Ronald Oussoren added the comment: Committed in 74806 (trunk), 74807 (2.6), 74808 (3.x), 74809 (3.1) -- keywords: -needs review, patch resolution: -> fixed stage: -> committed/rejected type: -> feature request ___ Python tracker

[issue6917] ".et_folder" instead of "get_folder" in mailbox documentation

2009-09-15 Thread Ezio Melotti
Ezio Melotti added the comment: Fixed in r74799 (trunk), r74802 (py3k) and r74800/r74803 (release(26|31)-maint), thanks! -- resolution: accepted -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker

[issue6917] ".et_folder" instead of "get_folder" in mailbox documentation

2009-09-15 Thread Ezio Melotti
Changes by Ezio Melotti : -- assignee: georg.brandl -> ezio.melotti nosy: +ezio.melotti priority: -> low resolution: -> accepted ___ Python tracker ___ _

[issue6517] configparser: add possibility to escape formatstrings

2009-09-15 Thread Fred L. Drake, Jr.
Changes by Fred L. Drake, Jr. : -- nosy: +fdrake ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue6917] ".et_folder" instead of "get_folder" in mailbox documentation

2009-09-15 Thread dauerbaustelle
New submission from dauerbaustelle : In the mailbox documentation, http://docs.python.org/library/mailbox.html#mailbox.Maildir..et_folder should be named "get_folder" instead of ".et_folder". -- assignee: georg.brandl components: Documentation messages: 92647 nosy: dauerbaustelle, georg.

[issue6914] Py_SetPythonHome, undocumented behavoir

2009-09-15 Thread Benjamin Peterson
Benjamin Peterson added the comment: Fixed in r74795. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue6916] Remove deprecated items from asynchat

2009-09-15 Thread Georg Brandl
Changes by Georg Brandl : -- assignee: georg.brandl -> josiahcarlson nosy: +josiahcarlson ___ Python tracker ___ ___ Python-bugs-list m