Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fixed #8577. distutils.sysconfig.get_python_inc() now differenciates buildir ↵ | Tarek Ziadé | 2010-04-30 | 1 | -0/+4 |
| | | | | and srcdir | ||||
* | Fix for issue #3646: with this patch it is possible to do a | Ronald Oussoren | 2010-04-30 | 1 | -0/+3 |
| | | | | | | | | | | | | framework install of Python in your home directory (on OSX): $ configure --enable-framework=${HOME}/Library/Frameworks $ make && make install Without this patch the framework would get installed just fine, but 'make install' would try to install the application bundles and command-line tools outside the user's home, which doesn't work for non-admin users (and is bad form anyway). | ||||
* | Issue #8464: tarfile.open(name, mode="w|") no longer creates | Lars Gustäbel | 2010-04-29 | 1 | -0/+3 |
| | | | | files with execute permissions set. | ||||
* | Issue #7834: Fix connect() of Bluetooth L2CAP sockets with recent versions | Antoine Pitrou | 2010-04-29 | 2 | -0/+4 |
| | | | | of the Linux kernel. Patch by Yaniv Aknin. | ||||
* | Fixed Issue6312 - httplib fails with HEAD requests to pages with ↵ | Senthil Kumaran | 2010-04-28 | 1 | -0/+3 |
| | | | | "transfer-encoding: chunked" | ||||
* | Issue 8202: when using the -m command line switch, sys.argv[0] is now '-m' ↵ | Nick Coghlan | 2010-04-28 | 1 | -0/+4 |
| | | | | instead of '-c' while searching for the module to be executed | ||||
* | Also mention patch submitter's name in NEWS, not just in the commit message | Nick Coghlan | 2010-04-28 | 1 | -1/+2 |
| | |||||
* | Issue 7490: make IGNORE_EXCEPTION_DETAIL also ignore details of the module ↵ | Nick Coghlan | 2010-04-28 | 2 | -0/+5 |
| | | | | containing the exception under test (original patch by Lennart Regebro) | ||||
* | Issue #3928: Support 'os.mknod()' in Solaris | Jesus Cea | 2010-04-28 | 1 | -0/+2 |
| | |||||
* | Issue #7449, last part (11): fix many tests if thread support is disabled | Victor Stinner | 2010-04-27 | 1 | -1/+2 |
| | | | | | | * Use try/except ImportError or test_support.import_module() to import thread and threading modules * Add @unittest.skipUnless(threading, ...) to testcases using threads | ||||
* | Issue #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newline | Antoine Pitrou | 2010-04-27 | 2 | -0/+4 |
| | | | | before the certificate footer. Patch by Kyle VanderBeek. | ||||
* | Issue #7449, part 1: fix test_support.py for Python compiled without thread | Victor Stinner | 2010-04-27 | 1 | -0/+2 |
| | |||||
* | reject None as the buffering argument like the C implementation does #8546 | Benjamin Peterson | 2010-04-27 | 1 | -0/+2 |
| | |||||
* | Issue #8549: Fix compiling the _ssl extension under AIX. Patch by | Antoine Pitrou | 2010-04-27 | 2 | -0/+4 |
| | | | | Sridhar Ratnakumar. | ||||
* | Issue #6656: fix locale.format_string to handle escaped percents and mappings. | R. David Murray | 2010-04-26 | 1 | -0/+3 |
| | | | | | | Refactors format_string. Includes tests for the two problems noted in the issue, but as far as I can see there are no other tests that confirm that format_string conforms to normal % formatting rules. | ||||
* | When DeprecationWarning was silenced by default, it also silenced any use of -Q | Brett Cannon | 2010-04-25 | 1 | -0/+2 |
| | | | | | | | by default as well. This change fixes that by treating -Q like -3 when it comes to DeprecationWarning; using it causes the silencing to not occur. Fixes issue #7319. | ||||
* | Issue #2302: Fix a race condition in SocketServer.BaseServer.shutdown, | Antoine Pitrou | 2010-04-25 | 1 | -0/+5 |
| | | | | | | where the method could block indefinitely if called just before the event loop started running. This also fixes the occasional freezes witnessed in test_httpservers. | ||||
* | Issue #5103: SSL handshake would ignore the socket timeout and block | Antoine Pitrou | 2010-04-24 | 1 | -0/+3 |
| | | | | indefinitely if the other end didn't respond. | ||||
* | The do_handshake() method of SSL objects now adjusts the blocking mode of | Antoine Pitrou | 2010-04-24 | 1 | -0/+3 |
| | | | | the SSL structure if necessary (as other methods already do). | ||||
* | - Issue #8509: Fix quoting in help strings and code snippets in configure.in. | Matthias Klose | 2010-04-24 | 1 | -0/+5 |
| | |||||
* | #7507: quote "!" in pipes.quote(); it is a special character for some shells. | Georg Brandl | 2010-04-24 | 1 | -0/+2 |
| | |||||
* | Issue #5238: Calling makefile() on an SSL object would prevent the | Antoine Pitrou | 2010-04-23 | 1 | -0/+3 |
| | | | | underlying socket from being closed until all objects get truely destroyed. | ||||
* | Issue #7943: Fix circular reference created when instantiating an SSL | Antoine Pitrou | 2010-04-23 | 2 | -0/+4 |
| | | | | socket. Initial patch by Péter Szabó. | ||||
* | issue8451: Making syslog module use sys.argv[0] for "ident". | Sean Reifscheider | 2010-04-23 | 1 | -0/+4 |
| | |||||
* | Issue #8108: Fix the unwrap() method of SSL objects when the socket has | Antoine Pitrou | 2010-04-22 | 1 | -0/+11 |
| | | | | | | | | | a non-infinite timeout. Also make that method friendlier with applications wanting to continue using the socket in clear-text mode, by disabling OpenSSL's internal readahead. Thanks to Darryl Miles for guidance. Issue #8108: test_ftplib's non-blocking SSL server now has proper handling of SSL shutdowns. | ||||
* | Issue #7332: Remove the 16KB stack-based buffer in | Antoine Pitrou | 2010-04-21 | 2 | -0/+6 |
| | | | | | | PyMarshal_ReadLastObjectFromFile, which doesn't bring any noticeable benefit compared to the dynamic memory allocation fallback. Patch by Charles-François Natali. | ||||
* | - Build the ossaudio extension on GNU/kFreeBSD. | Matthias Klose | 2010-04-21 | 1 | -0/+5 |
| | |||||
* | Issue #8484: Load all ciphers and digest algorithms when initializing | Antoine Pitrou | 2010-04-21 | 1 | -0/+4 |
| | | | | | the _ssl extension, such that verification of some SSL certificates doesn't fail because of an "unknown algorithm". | ||||
* | Add Tim Golden. | Martin v. Löwis | 2010-04-21 | 1 | -0/+3 |
| | |||||
* | Issue #8437: Fix test_gdb failures, patch written by Dave Malcolm | Victor Stinner | 2010-04-20 | 1 | -0/+2 |
| | |||||
* | Fix Issue #4841: timeout is now applied for connections resulting from ↵ | Giampaolo Rodolà | 2010-04-19 | 1 | -0/+3 |
| | | | | PORT/EPRT commands | ||||
* | Fixed #8463: added missing reference to bztar in shutil's documentation. | Tarek Ziadé | 2010-04-19 | 1 | -0/+2 |
| | |||||
* | Issue #8438: Remove reference to the missing "surrogateescape" encoding | Antoine Pitrou | 2010-04-19 | 1 | -0/+3 |
| | | | | error handler from the new IO library. | ||||
* | Fix for issue #7072 | Ronald Oussoren | 2010-04-18 | 1 | -0/+2 |
| | |||||
* | Fix Issue #3817: 225 is now considered a valid response code for ABOR | Giampaolo Rodolà | 2010-04-18 | 1 | -0/+3 |
| | |||||
* | Issue #8279: Fix test_gdb failures. | Martin v. Löwis | 2010-04-17 | 1 | -0/+2 |
| | |||||
* | Add Giampaolo. | Martin v. Löwis | 2010-04-17 | 1 | -0/+3 |
| | |||||
* | Issue #8322: Add a *ciphers* argument to SSL sockets, so as to change the | Antoine Pitrou | 2010-04-17 | 1 | -0/+3 |
| | | | | available cipher list. Helps fix test_ssl with OpenSSL 1.0.0. | ||||
* | Issue #3864: Skip three test_signal tests on freebsd6 due to platform bug. | R. David Murray | 2010-04-17 | 1 | -0/+3 |
| | | | | | | | Two itimer tests and an interprocess signal test fail on FreeBSD 6 if any test that starts a thread runs before test_signal. Since FreeBSD7 does not show this behavior, the bug is most likely a platform bug, so this patch just skips the failing tests on freebsd6. | ||||
* | have a clear error when passing something > sys.maxsize to bytearray | Benjamin Peterson | 2010-04-16 | 1 | -0/+3 |
| | |||||
* | Fix issue2987: RFC2732 support for urlparse (IPv6 addresses) | Senthil Kumaran | 2010-04-16 | 1 | -0/+3 |
| | |||||
* | #5341: typo. | Georg Brandl | 2010-04-14 | 1 | -1/+1 |
| | |||||
* | Issue #5277: Fix quote counting when parsing RFC 2231 encoded parameters. | R. David Murray | 2010-04-13 | 2 | -0/+4 |
| | |||||
* | Issue #7585: use tab between components in unified and context diff headers. | R. David Murray | 2010-04-12 | 2 | -0/+5 |
| | | | | | | | | | | | | Instead of spaces between the filename and date (or whatever the string is that follows the filename, if any) use tabs. This is what the unix 'diff' command does, for example, and difflib was intended to follow the 'standard' way of doing diffs. This improves compatibility with patch tools. The docs and examples are also changed to recommended that the date format used be the ISO 8601 format, which is what modern diff tools emit by default. Patch by Anatoly Techtonik. | ||||
* | Issue #7472: ISO-2022 charsets now consistently use 7bit CTE. | R. David Murray | 2010-04-12 | 1 | -0/+4 |
| | | | | | | | | Fixed a typo in the email.encoders module so that messages output using an ISO-2022 character set will use a content-transfer-encoding of 7bit consistently. Previously if the input data had any eight bit characters the output data would get marked as 8bit even though it was actually 7bit. | ||||
* | Issue #8330: Fix expected output in test_gdb. | Martin v. Löwis | 2010-04-12 | 1 | -0/+2 |
| | |||||
* | Fix misplaced items and incorrect title. | Antoine Pitrou | 2010-04-11 | 1 | -11/+11 |
| | |||||
* | Issue #8374: Update the internal alias table in the :mod:`locale` module | Antoine Pitrou | 2010-04-11 | 1 | -0/+3 |
| | | | | to cover recent locale changes and additions. | ||||
* | Two typo fixes | Andrew M. Kuchling | 2010-04-11 | 1 | -1/+1 |
| | |||||
* | towards beta 2 | Benjamin Peterson | 2010-04-10 | 1 | -0/+12 |
| |