Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13304: Skip test case if user site-packages disabled (-s or | Ned Deily | 2011-10-31 | 1 | -0/+3 |
|\ | | | | | | | PYTHONNOUSERSITE). (Patch by Carl Meyer) | ||||
| * | Issue #13304: Skip test case if user site-packages disabled (-s or | Ned Deily | 2011-10-31 | 2 | -0/+4 |
| | | | | | | | | PYTHONNOUSERSITE). (Patch by Carl Meyer) | ||||
* | | Issue #12797: Added custom opener parameter to builtin open() and FileIO.open(). | Ross Lagerwall | 2011-10-31 | 1 | -0/+3 |
| | | |||||
* | | merge from 3.2 - Fix issue 10817 - Fix urlretrieve function to raise ↵ | Senthil Kumaran | 2011-10-31 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | | | ContentTooShortError even when reporthook is None. Patch by Jyrki Pulliainen. | ||||
| * | Fix issue 10817 - Fix urlretrieve function to raise ContentTooShortError | Senthil Kumaran | 2011-10-31 | 1 | -0/+3 |
| | | | | | | | | even when reporthook is None. Patch by Jyrki Pulliainen. | ||||
* | | Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart. | Ned Deily | 2011-10-31 | 1 | -0/+3 |
|\ \ | |/ | | | | | (Patch by Roger Serwy) | ||||
| * | Issue 13296: Fix IDLE to clear compile __future__ flags on shell restart. | Ned Deily | 2011-10-31 | 1 | -0/+3 |
| | | | | | | | | (Patch by Roger Serwy) | ||||
| * | Merge heads | Florent Xicluna | 2011-10-30 | 1 | -0/+5 |
| |\ | |||||
* | | | Fix User-Agent for the xmlrpc.client, and catch KeyboardInterrupt for the ↵ | Florent Xicluna | 2011-10-30 | 1 | -0/+3 |
| | | | | | | | | | | | | standalone xmlrpc.server. | ||||
* | | | Merge heads | Florent Xicluna | 2011-10-30 | 1 | -0/+3 |
|\ \ \ | |||||
| * \ \ | Add Misc/NEWS entry for issue #10519 | Petri Lehtinen | 2011-10-30 | 1 | -0/+3 |
| |\ \ \ | | |/ / | |||||
| | * | | Add Misc/NEWS entry for issue #10519 | Petri Lehtinen | 2011-10-30 | 1 | -0/+3 |
| | | | | |||||
* | | | | Merge 3.2 | Florent Xicluna | 2011-10-30 | 1 | -0/+6 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | |||||
| * | | Issue #13293: Better error message when trying to marshal bytes using ↵ | Florent Xicluna | 2011-10-30 | 1 | -0/+3 |
| | | | | | | | | | | | | xmlrpc.client. | ||||
| * | | Closes #13291: NameError in xmlrpc package. | Florent Xicluna | 2011-10-30 | 1 | -0/+2 |
| |/ | |||||
* | | Issue #10363: Deallocate global locks in Py_Finalize(). | Antoine Pitrou | 2011-10-30 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #10363: Deallocate global locks in Py_Finalize(). | Antoine Pitrou | 2011-10-30 | 1 | -0/+2 |
| | | |||||
* | | Issue #5661: Add a test for ECONNRESET/EPIPE handling to test_asyncore. Patch | Charles-François Natali | 2011-10-29 | 2 | -0/+4 |
| | | | | | | | | by Xavier de Gaye. | ||||
* | | - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. | Barry Warsaw | 2011-10-28 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. | Barry Warsaw | 2011-10-28 | 1 | -0/+2 |
| | | |||||
* | | Merge 3.2 | Florent Xicluna | 2011-10-28 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Closes #13258: Use callable() built-in in the standard library. | Florent Xicluna | 2011-10-28 | 1 | -0/+2 |
| | | |||||
* | | #13273: merge with 3.2. | Ezio Melotti | 2011-10-28 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | #13273: fix a bug that prevented HTMLParser to properly detect some tags ↵ | Ezio Melotti | 2011-10-28 | 1 | -0/+3 |
| | | | | | | | | when strict=False. | ||||
| * | merge heads | Petri Lehtinen | 2011-10-24 | 1 | -0/+11 |
| |\ | |||||
* | | | Issue #11183: Add finer-grained exceptions to the ssl module, so that | Antoine Pitrou | 2011-10-27 | 1 | -0/+3 |
| | | | | | | | | | | | | you don't have to inspect the exception's attributes in the common case. | ||||
* | | | Fix the issue number of my cp65001 commit: 13247 => issue #13216 | Victor Stinner | 2011-10-26 | 1 | -1/+1 |
| | | | |||||
* | | | Close #13247: Add cp65001 codec, the Windows UTF-8 (CP_UTF8) | Victor Stinner | 2011-10-26 | 1 | -0/+2 |
| | | | |||||
* | | | Fix typo in NEWS | Victor Stinner | 2011-10-25 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #13226: Add RTLD_xxx constants to the os module. These constants can by | Victor Stinner | 2011-10-25 | 1 | -0/+3 |
| | | | | | | | | | | | | used with sys.setdlopenflags(). | ||||
* | | | Close #10278: Add clock_getres(), clock_gettime() and CLOCK_xxx constants to | Victor Stinner | 2011-10-25 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | the time module. time.clock_gettime(time.CLOCK_MONOTONIC) provides a monotonic clock | ||||
* | | | merge heads | Petri Lehtinen | 2011-10-24 | 1 | -0/+9 |
|\ \ \ | |||||
| * \ \ | Issue #10332: multiprocessing: fix a race condition when a Pool is closed | Charles-François Natali | 2011-10-24 | 1 | -0/+3 |
| |\ \ \ | | | |/ | | |/| | | | | | before all tasks have completed. | ||||
| | * | | Issue #10332: multiprocessing: fix a race condition when a Pool is closed | Charles-François Natali | 2011-10-24 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | before all tasks have completed. | ||||
| * | | | Merge 3.2. | Florent Xicluna | 2011-10-24 | 1 | -0/+2 |
| |\ \ \ | | |/ / | |||||
| | * | | Issue #13255: wrong docstrings in array module. | Florent Xicluna | 2011-10-24 | 1 | -0/+2 |
| | | | | |||||
| * | | | Issue #13248, issue #8540: Remove deprecated Context._clamp attribute from ↵ | Mark Dickinson | 2011-10-24 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | Decimal module. | ||||
| * | | | Merge 3.2 | Florent Xicluna | 2011-10-23 | 1 | -0/+2 |
| |\ \ \ | | |/ / | |||||
| | * | | Issue 13141: Demonstrate recommended style for socketserver examples. | Florent Xicluna | 2011-10-23 | 1 | -0/+6 |
| | | | | |||||
* | | | | Merge 3.2 | Petri Lehtinen | 2011-10-24 | 1 | -0/+3 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | |||||
| * | | Issue #13018: Fix reference leaks in error paths in dictobject.c. | Petri Lehtinen | 2011-10-24 | 1 | -0/+3 |
| |/ | | | | | | | Patch by Suman Saha. | ||||
* | | Issue #13201: equality for range objects is now based on equality of the ↵ | Mark Dickinson | 2011-10-23 | 2 | -0/+5 |
| | | | | | | | | underlying sequences. Thanks Sven Marnach for the patch. | ||||
* | | Merge issue 1294232 patch from 3.2 | Nick Coghlan | 2011-10-23 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue 1294232: Fix errors in metaclass calculation affecting some cases of ↵ | Nick Coghlan | 2011-10-23 | 1 | -0/+4 |
| | | | | | | | | metaclass inheritance. Patch by Daniel Urban. | ||||
* | | Issue 13243: Rename _Py_identifier to _Py_IDENTIFIER in asdl_c.py | Meador Inge | 2011-10-22 | 1 | -0/+1 |
| | | | | | | | | | | Parser/asdl_c.py was missed in commit 7109f31300fb when _Py_identifier was replaced with _Py_IDENTIFIER. Thanks to Eric Snow for the patch. | ||||
* | | #12753: Add support for Unicode name aliases and named sequences. | Ezio Melotti | 2011-10-21 | 1 | -0/+4 |
| | | |||||
* | | Banch merge | Éric Araujo | 2011-10-21 | 2 | -1/+2 |
|\ \ | |||||
| * | | Fix missing imports in setup scripts generated by packaging (#13205). | Éric Araujo | 2011-10-21 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I’ve made more edits than the bug report suggested to make sure the generated setup script is compatible with many Python versions; a comment in the source explains that in detail. The cfg_to_args function uses old 2.x idioms like codecs.open and RawConfigParser.readfp because I want the setup.py generated by packaging and distutils2 to be the same. Most users won’t see the deprecation warning and I ignore it in the test suite. Thanks to David Barnett for the report and original patch. | ||||
* | | | Closes #13235: Added deprecation for warn() methods and function in logging. | Vinay Sajip | 2011-10-21 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #12170: The count(), find(), rfind(), index() and rindex() methods | Antoine Pitrou | 2011-10-20 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | of bytes and bytearray objects now accept an integer between 0 and 255 as their first argument. Patch by Petri Lehtinen. |