Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io ↵ | Antoine Pitrou | 2013-10-11 | 1 | -3/+4 |
| | | | | module instead of the full locale module. | ||||
* | Fix expected checksum for new unicodedata (after full rebuild) | Antoine Pitrou | 2013-10-11 | 1 | -1/+1 |
| | |||||
* | #19192: Give up on time.xmlrpc.com as an xmlrpc network test. | R David Murray | 2013-10-11 | 2 | -29/+17 |
| | | | | | | | | | | | | | time.xmlrpc.com has come and gone over the years, and has been gone again for a while. The test did test one thing that the current xmlrpc tests don't: the use of multiple levels of attribute names in the call. So in addition to removing the network test, we add a test in xmlrpc of dotted name access. There should also be a test for when dotted name access is disallowed, but that requires more extensive test harness refactoring, and in any case was not tested by the network test we are deleting, since it is a server-side setting. This is a slightly simplified version of a patch by Vajrasky Kok. | ||||
* | Rename contextlib.ignored() to contextlib.ignore(). | Raymond Hettinger | 2013-10-11 | 1 | -5/+5 |
| | |||||
* | upgrade unicode db to 6.3.0 (closes #19221) | Benjamin Peterson | 2013-10-10 | 1 | -1/+1 |
| | |||||
* | 18764: remove the problematic 'print' alias for the PDB 'p' command. | R David Murray | 2013-10-10 | 1 | -3/+6 |
| | | | | | | So that it no longer shadows the print function. Patch by Connor Osborn, doc and test changes by R. David Murray. | ||||
* | Issue #15805: Add contextlib.redirect_stdout() | Raymond Hettinger | 2013-10-10 | 1 | -0/+9 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2013-10-09 | 1 | -16/+16 |
| | |||||
* | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 1 | -0/+18 |
|\ | |||||
| * | Issue 19158: a rare race in BoundedSemaphore could allow .release() too often. | Tim Peters | 2013-10-09 | 1 | -0/+18 |
| | | |||||
* | | Issue #18948: improve SuppressCoreFiles to include Windows crash popup ↵ | Antoine Pitrou | 2013-10-08 | 7 | -87/+72 |
| | | | | | | | | | | | | suppression, and use it in more tests. Patch by Valerie Lambert and Zachary Ware. | ||||
* | | Close #19156: add tests and fix for Enum helper edge cases. Patch from CliffM. | Ethan Furman | 2013-10-07 | 1 | -0/+29 |
| | | |||||
* | | test_import.test_module_with_large_stack(): unload the test module | Victor Stinner | 2013-10-06 | 1 | -1/+9 |
| | | | | | | | | | | Ensure that the module is unloaded to be able to run the test more than once, and to not leak memory. | ||||
* | | merge | Raymond Hettinger | 2013-10-06 | 4 | -1/+14 |
|\ \ | |||||
| * | | Issue #19087: Improve bytearray allocation in order to allow cheap popping ↵ | Antoine Pitrou | 2013-10-05 | 2 | -1/+10 |
| | | | | | | | | | | | | of data at the front (slice deletion). | ||||
| * | | [issue 19152] Ensure we have actually registered ExtensionFileLoader as an ↵ | Eric Snow | 2013-10-05 | 1 | -0/+1 |
| | | | | | | | | | | | | ExecutionLoader. | ||||
| * | | #19166: merge with 3.3. | Ezio Melotti | 2013-10-05 | 1 | -0/+3 |
| |\ \ | | |/ | |||||
| | * | #19166: use an unused var in a test. Patch by Vajrasky Kok. | Ezio Melotti | 2013-10-05 | 1 | -0/+3 |
| | | | |||||
* | | | Strengthen one of the collections.Counter() tests | Raymond Hettinger | 2013-10-06 | 1 | -0/+2 |
|/ / | |||||
* | | merge | Raymond Hettinger | 2013-10-04 | 1 | -0/+24 |
|\ \ | |/ | |||||
| * | Issue #18594: Make the C code more closely match the pure python code. | Raymond Hettinger | 2013-10-04 | 1 | -0/+24 |
| | | |||||
* | | Issue #16803: Run test.test_importlib.test_abc under both | Brett Cannon | 2013-10-04 | 2 | -120/+308 |
| | | | | | | | | _frozen_importlib and source. | ||||
* | | Issue #19014: memoryview.cast() is now allowed on zero-length views. | Antoine Pitrou | 2013-10-03 | 1 | -3/+10 |
|\ \ | |/ | |||||
| * | Issue #19014: memoryview.cast() is now allowed on zero-length views. | Antoine Pitrou | 2013-10-03 | 1 | -3/+10 |
| | | |||||
* | | Close #17839: support bytes-like objects in base64 module | Nick Coghlan | 2013-10-02 | 2 | -23/+105 |
| | | | | | | | | | | | | | | | | | | This mostly affected the encodebytes and decodebytes function (which are used by base64_codec) Also added a test to ensure all bytes-bytes codecs can handle memoryview input and tests for handling of multidimensional and non-bytes format input in the modern base64 API. | ||||
* | | Tweak skipIf message | Brett Cannon | 2013-10-02 | 1 | -1/+1 |
| | | |||||
* | | Try to fix issue #19134 again | Brett Cannon | 2013-10-02 | 1 | -5/+6 |
| | | |||||
* | | Close #18690: register memoryview with Sequence ABC | Nick Coghlan | 2013-10-02 | 1 | -0/+2 |
| | | |||||
* | | Close #19078: memoryview now supports reversed | Nick Coghlan | 2013-10-02 | 1 | -0/+9 |
| | | | | | | | | Patch by Claudiu Popa | ||||
* | | Issue #19132: The pprint module now supports compact mode. | Serhiy Storchaka | 2013-10-02 | 1 | -0/+12 |
| | | |||||
* | | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 1 | -12/+67 |
|\ \ | |/ | | | | | frozenset subclasses. | ||||
| * | Issue #19137: The pprint module now correctly formats instances of set and | Serhiy Storchaka | 2013-10-02 | 1 | -12/+67 |
| | | | | | | | | frozenset subclasses. | ||||
* | | Close #10042: functools.total_ordering now handles NotImplemented | Nick Coghlan | 2013-10-01 | 1 | -7/+101 |
| | | | | | | | | (Patch by Katie Miller) | ||||
* | | Merge #19092 from 3.3 | Nick Coghlan | 2013-10-01 | 1 | -0/+37 |
|\ \ | |/ | |||||
| * | Close #19092: ExitStack now reraises exceptions from __exit__ | Nick Coghlan | 2013-10-01 | 1 | -0/+37 |
| | | | | | | | | Report and patch by Hrvoje Nikšić | ||||
* | | Issue #19134: Make a test in inspect conditional on multiprocessing | Brett Cannon | 2013-09-30 | 1 | -0/+3 |
| | | | | | | | | | | | | being available. Thanks to Remi Pointel for the bug report. | ||||
* | | rename some more tests to avoid duplicate names (#19123) | Benjamin Peterson | 2013-09-29 | 1 | -3/+3 |
| | | |||||
* | | Issue #19095: SSLSocket.getpeercert() now raises ValueError when the SSL ↵ | Antoine Pitrou | 2013-09-29 | 1 | -1/+7 |
| | | | | | | | | handshake hasn't been done. | ||||
* | | Merge. | Richard Oudkerk | 2013-09-29 | 1 | -8/+9 |
|\ \ | |/ | |||||
| * | Issue #19112: avoid using function defined in method. | Richard Oudkerk | 2013-09-29 | 1 | -8/+9 |
| | | |||||
* | | merge 3.3 (#19112) | Benjamin Peterson | 2013-09-29 | 1 | -7/+6 |
|\ \ | |/ | |||||
| * | move helper function into its test method (closes #19112) | Benjamin Peterson | 2013-09-29 | 1 | -7/+6 |
| | | |||||
* | | merge 3.3 (#19117) | Benjamin Peterson | 2013-09-29 | 1 | -4/+0 |
|\ \ | |/ | |||||
| * | fix duplicate test names in test_dis (closes #19117) | Benjamin Peterson | 2013-09-29 | 1 | -4/+0 |
| | | |||||
* | | merge 3.3 (#19118) | Benjamin Peterson | 2013-09-29 | 1 | -4/+0 |
|\ \ | |/ | |||||
| * | remove duplicate test_mkd (closes #19118) | Benjamin Peterson | 2013-09-29 | 1 | -4/+0 |
| | | |||||
* | | merge 3.3 (#19116) | Benjamin Peterson | 2013-09-29 | 1 | -1/+0 |
|\ \ | |/ | |||||
| * | combine two tests to avoid duplicate names (closes #19116) | Benjamin Peterson | 2013-09-29 | 1 | -1/+0 |
| | | |||||
* | | merge 3.3 (#19126) | Benjamin Peterson | 2013-09-29 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | fix duplicate test name (closes #19126) | Benjamin Peterson | 2013-09-29 | 1 | -1/+1 |
| | |