[issue12012] _ssl module doesn't compile with OpenSSL 1.0.0d: SSLv2_method is missing

2011-05-05 Thread STINNER Victor
New submission from STINNER Victor : It looks like OpenSSL can be compiled without SSLv2 (#ifdef OPENSSL_NO_SSL2). See this bug report: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=612780 When compiling Python, I get the following error: /home/haypo/prog/HG/cpython/Modules/_ssl.c: In functi

[issue12004] PyZipFile.writepy gives internal error on syntax errors

2011-05-05 Thread Eric V. Smith
Eric V. Smith added the comment: Could you incorporate the test into Lib/test/test_zipfile? Thanks! -- components: +Library (Lib) nosy: +eric.smith ___ Python tracker ___ _

[issue11277] Crash with mmap and sparse files on Mac OS X

2011-05-05 Thread Nadeem Vawda
Nadeem Vawda added the comment: haypo> Can we just remove the test? I think so. The test was originally intended to catch the case where crc32() or adler32() would get a buffer of >=4GB, and then silently truncate the size and produce an incorrect result (issue10276). However, 2.7's zlib doesn'

[issue12004] PyZipFile.writepy gives internal error on syntax errors

2011-05-05 Thread Ben Morgan
Ben Morgan added the comment: I've attached a patch to test_zipfile.py. I noticed that it writes out the error to stdout not stderr; I don't know if this is the desired behaviour. -- Added file: http://bugs.python.org/file21903/test-zipfile.patch __

[issue12013] file /usr/local/lib/python3.1/lib-dynload/_socket.so: symbol inet_aton: referenced symbol not found

2011-05-05 Thread Alex Lai
New submission from Alex Lai : Hi guys, I was knocked down by a error related to a socket library _socket.so when I was trying to compile distribute-0.6.14: # python3 setup.py install Before install bootstrap. Scanning installed packages No setuptools distribution found running install Traceb

[issue12014] str.format parses replacement field incorrectly

2011-05-05 Thread Ben Wolfson
New submission from Ben Wolfson : As near as I can make out from , the following should return the string "hi": "{0[!]}".format({"!":"hi"}) We have a "{", followed by a field name, followed by a "}", the field name consisting of an ar

[issue11999] sporadic failure in test_mailbox on FreeBSD

2011-05-05 Thread R. David Murray
R. David Murray added the comment: Well, it turns out that this sporadic failure is not a test bug, but a real bug in the mailbox module that the test is revealing. This issue is the same one that motivated the changes in issue 6896. Those changes, however, merely reduced the problem, but di

[issue11999] sporadic failure in test_mailbox on FreeBSD

2011-05-05 Thread R. David Murray
Changes by R. David Murray : Removed file: http://bugs.python.org/file21904/mailbox_mtime.patch ___ Python tracker ___ ___ Python-bugs-list ma

[issue11999] sporadic failure in test_mailbox on FreeBSD

2011-05-05 Thread R. David Murray
Changes by R. David Murray : Added file: http://bugs.python.org/file21905/mailbox_mtime.patch ___ Python tracker ___ ___ Python-bugs-list mail

[issue1677872] Efficient reverse line iterator

2011-05-05 Thread John O'Connor
Changes by John O'Connor : -- nosy: +jcon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue12014] str.format parses replacement field incorrectly

2011-05-05 Thread Ben Wolfson
Changes by Ben Wolfson : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue11049] add tests for test.support

2011-05-05 Thread Eli Bendersky
Eli Bendersky added the comment: Any news on this? Can you check that your patches apply for latest trunk and commit them? -- ___ Python tracker ___ ___

[issue12015] possible characters in temporary file name is too few

2011-05-05 Thread Steve Ward
New submission from Steve Ward : In this revision , the possible characters that comprise a temporary file decreased. It was noted in this thread . The old character set had

[issue11015] Bring test.support docs up to date

2011-05-05 Thread Eli Bendersky
Eli Bendersky added the comment: Terry, I've incorporated your suggestions except the new formulation for verbosity to doctest.testmod, since it's not really clear which one is more accurate. I think it's intelligible as it is now (especially given that test.support is for use of Python cont

[issue11015] Bring test.support docs up to date

2011-05-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 2fd435ac3551 by Eli Bendersky in branch 'default': Issue #11015: bring test.support docs up to date http://hg.python.org/cpython/rev/2fd435ac3551 -- nosy: +python-dev ___ Python tracker

[issue12015] possible characters in temporary file name is too few

2011-05-05 Thread Amaury Forgeot d'Arc
Amaury Forgeot d'Arc added the comment: - How is it an issue? is the number of combinations really important to you? - Isn't there a greater risk of collisions on a case-insensitive filesystem? -- nosy: +amaury.forgeotdarc ___ Python tracker

<    1   2