[issue2272] Segment Violation when using smtp with tls

2008-03-11 Thread David Harel
New submission from David Harel [EMAIL PROTECTED]: Using Linux (Gentoo), when closing the socket of an smtp connection using tls (you can use the example at: http://snippets.dzone.com/posts/show/757). Attached code example with my e-mail data. (I don't mind). Also tested on Debian with Python

[issue2271] msi installs to the incorrect location (C drive)

2008-03-11 Thread Ross
Ross [EMAIL PROTECTED] added the comment: log now attached Added file: http://bugs.python.org/file9655/python.zip __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2271 __ ___

[issue2273] test_decimal: possible thread lockup in test case

2008-03-11 Thread Jared Grubb
New submission from Jared Grubb [EMAIL PROTECTED]: In Lib\test\test_decimal.py, attached is a bugfix for two bugs: 1) If the thfunc2 actually fails, then its thread will throw an exception and never set the Events that thfunc1 is waiting for; thus, thfunc1 never returns, causing the whole

[issue2273] test_decimal: possible thread lockup in test case

2008-03-11 Thread Facundo Batista
Changes by Facundo Batista [EMAIL PROTECTED]: -- assignee: - facundobatista nosy: +facundobatista __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2273 __ ___

[issue2273] test_decimal: possible thread lockup in test case

2008-03-11 Thread Mark Dickinson
Mark Dickinson [EMAIL PROTECTED] added the comment: This is a minor annoyance that's tripped me up before as well. Only minor, since it only happens when there's something wrong with decimal.py. The patch looks sound; I've attached a regenerated version of it against the trunk. (Note that

[issue2274] heapq API

2008-03-11 Thread Raymond Hettinger
New submission from Raymond Hettinger [EMAIL PROTECTED]: The heapreplace() function has an irritating API. Since the replacement is unconditional, it usually obligates the caller to examine the top of the heap to see if it is smaller or larger than the candidate replacement item. Typical calls

[issue2274] heapq API

2008-03-11 Thread Raymond Hettinger
Changes by Raymond Hettinger [EMAIL PROTECTED]: -- versions: +Python 3.0 -Python 2.5 __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue2274 __ ___ Python-bugs-list mailing

[issue2275] urllib2 header capitalization

2008-03-11 Thread Hans-Peter Jansen
New submission from Hans-Peter Jansen [EMAIL PROTECTED]: The urllib2 behavior related to headers is - hmm - improvable. It simply capitalize() the key, which leads to funny results like: Accept-charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7 while this is seemingly conforming to the specs, it's simply

[issue1450] make modulator more general

2008-03-11 Thread Gabriel Wicke
Gabriel Wicke [EMAIL PROTECTED] added the comment: Slightly adjusted and from top dir. -- nosy: +gwicke Added file: http://bugs.python.org/file9659/modulator-top.patch __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue1450

[issue2273] test_decimal: possible thread lockup in test case

2008-03-11 Thread Jared Grubb
Jared Grubb [EMAIL PROTECTED] added the comment: I ran into this bug because I created a context manager in one of my own projects, and the regression tests in test_decimal looked like a good start for my own regression tests... when some recent changes broke MY code, I found the test bug too

[issue2276] distutils out-of-date for runtime_library_dirs flag on OS X

2008-03-11 Thread Bill Janssen
New submission from Bill Janssen [EMAIL PROTECTED]: The OS X linker now understands -R, but distutils continues to pass the wrong flags back in distutils.unixccompiler.runtime_library_dir_option(). I'm checking with the Apple folks as to exactly what the right flag is. -- assignee: