Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #24773: Fixed tests failures on systems with 32-bit time_t. | Alexander Belopolsky | 2016-07-26 | 1 | -0/+5 |
| | | | | | | | Several 32-bit systems have issues with transitions in the year 2037. This is a bug in the system C library since time_t does not overflow until 2038, but let's skip tests starting from 2037 to work around those bugs. | ||||
* | Issue #27620: Escape key closes Query box as cancelled. | Terry Jan Reedy | 2016-07-26 | 2 | -3/+4 |
| | |||||
* | Issue #24137, issue #27611: Restore tkinter after test_idle. | Terry Jan Reedy | 2016-07-25 | 1 | -0/+2 |
| | |||||
* | Issue #1621: Avoid signed overflow in list and tuple operations | Martin Panter | 2016-07-25 | 1 | -1/+13 |
| | | | | Patch by Xiang Zhang. | ||||
* | Issue #19198: IDLE: tab after initial whitespace should tab, not autocomplete. | Terry Jan Reedy | 2016-07-25 | 3 | -7/+12 |
| | | | | Fixes problem with writing docstrings at lease twice indented. | ||||
* | Issue 24773: Make zoneinfo tests more robust. (reapply) | Alexander Belopolsky | 2016-07-25 | 1 | -2/+5 |
| | |||||
* | Issue #27609: Explicitly return None when there are other returns. | Terry Jan Reedy | 2016-07-25 | 2 | -30/+27 |
| | | | | In a few cases, reverse a condition and eliminate a return. | ||||
* | Reindented Lib/test/datetimetester.py. | Alexander Belopolsky | 2016-07-24 | 1 | -2/+2 |
| | |||||
* | Issue #24773: Made ZoneInfoCompleteTest a TestSuit. | Alexander Belopolsky | 2016-07-24 | 2 | -20/+29 |
| | | | | This should improve the diagnostic and progress reports. | ||||
* | Issue 24773: Make zoneinfo tests more robust. | Alexander Belopolsky | 2016-07-23 | 1 | -2/+5 |
| | |||||
* | Issue #13849: Merge from 3.5 | Berker Peksag | 2016-07-23 | 1 | -1/+1 |
|\ | |||||
| * | Issue #13849: Fix test_null_bytes under Windows | Berker Peksag | 2016-07-23 | 1 | -1/+1 |
| | | |||||
* | | Issue #13849: Merge from 3.5 | Berker Peksag | 2016-07-23 | 1 | -0/+9 |
|\ \ | |/ | |||||
| * | Issue #13849: Add tests for null byte checking in test_genericpath | Berker Peksag | 2016-07-23 | 1 | -0/+9 |
| | | |||||
* | | Issue #27493: Fix test_path_objects under Windows | Berker Peksag | 2016-07-23 | 1 | -1/+1 |
| | | |||||
* | | Issue #27130: Merge zlib 64-bit fixes from 3.5 | Martin Panter | 2016-07-23 | 1 | -16/+48 |
|\ \ | |/ | |||||
| * | Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module | Martin Panter | 2016-07-23 | 1 | -16/+48 |
| | | | | | | | | Patch by Xiang Zhang. | ||||
* | | Closes issue #24773: Implement PEP 495 (Local Time Disambiguation). | Alexander Belopolsky | 2016-07-22 | 3 | -78/+975 |
| | | |||||
* | | Closes #27493: accepted Path objects in file handlers for logging. | Vinay Sajip | 2016-07-22 | 3 | -2/+31 |
| | | |||||
* | | Closes #26559: Allow configuring flush-on-close behaviour of MemoryHandler. | Vinay Sajip | 2016-07-22 | 2 | -6/+46 |
| | | |||||
* | | Issue #27472: Add test.support.unix_shell as the path to the default shell. | Xavier de Gaye | 2016-07-22 | 4 | -13/+22 |
| | | |||||
* | | Issue #27528: Merge warning doc and test from 3.5 | Martin Panter | 2016-07-19 | 1 | -0/+12 |
|\ \ | |/ | |||||
| * | Issue #27528: Document and test warning messages must match at beginning | Martin Panter | 2016-07-19 | 1 | -0/+12 |
| | | |||||
* | | Merge 3.5. | Stefan Krah | 2016-07-17 | 1 | -0/+28 |
|\ \ | |/ | |||||
| * | Issue #26974: Fix segfault in the presence of absurd subclassing. Proactively | Stefan Krah | 2016-07-17 | 1 | -0/+28 |
| | | | | | | | | eliminate all internal uses of overridden methods. | ||||
* | | Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList. | Serhiy Storchaka | 2016-07-17 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList. | Serhiy Storchaka | 2016-07-17 | 1 | -2/+2 |
| | | |||||
* | | Issue #17711: Fixed unpickling by the persistent ID with protocol 0. | Serhiy Storchaka | 2016-07-17 | 3 | -10/+64 |
|\ \ | |/ | | | | | Original patch by Alexandre Vassalotti. | ||||
| * | Issue #17711: Fixed unpickling by the persistent ID with protocol 0. | Serhiy Storchaka | 2016-07-17 | 3 | -10/+64 |
| | | | | | | | | Original patch by Alexandre Vassalotti. | ||||
* | | Issue #25507: Merge from 3.5 with ttk replacing colorchooser. | Terry Jan Reedy | 2016-07-16 | 1 | -0/+6 |
|\ \ | |/ | | | | | | | IDLE no longer runs buggy code because of its tkinter imports. Users must include the same imports required to run directly in Python. | ||||
| * | Issue #25507: IDLE no longer runs buggy code because of its tkinter imports. | Terry Jan Reedy | 2016-07-16 | 1 | -0/+6 |
| | | | | | | | | Users must include the same imports required to run directly in Python. | ||||
* | | Merge for #27083 | Brett Cannon | 2016-07-16 | 4 | -22/+28 |
|\ \ | |/ | |||||
| * | Fix regressions introduced by fixes for issue #27083. | Brett Cannon | 2016-07-16 | 4 | -22/+28 |
| | | |||||
* | | Merge: #27522: break unintended cycle in feedparser. | R David Murray | 2016-07-16 | 1 | -3/+6 |
|\ \ | |/ | |||||
| * | #27522: break unintended cycle in feedparser. | R David Murray | 2016-07-16 | 1 | -3/+6 |
| | | | | | | | | Patch by Costas. | ||||
* | | Merge for #27083 | Brett Cannon | 2016-07-15 | 2 | -7/+11 |
|\ \ | |/ | |||||
| * | Issue #27083: Respect the PYTHONCASEOK environment variable under | Brett Cannon | 2016-07-15 | 2 | -7/+11 |
| | | | | | | | | | | | | | | | | | | | | Windows. Originally only b'PYTHONCASEOK' was being checked for in os.environ, but that won't work under Windows where all environment variables are strings (on OS X they are bytes). Thanks to Eryk Sun for the bug report. | ||||
* | | Fix a failing test introduced as part of issue #27512 | Brett Cannon | 2016-07-15 | 1 | -2/+1 |
| | | |||||
* | | Merge for #26844 | Brett Cannon | 2016-07-15 | 1 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #26844: Fix imp.find_module() to have the exception related to | Brett Cannon | 2016-07-15 | 1 | -2/+2 |
| | | | | | | | | | | | | type issues be about 'path' instead of 'name'. Thanks to Lev Maximov for the patch. | ||||
* | | Issue #27512: Don't segfault when os.fspath() calls an object whose | Brett Cannon | 2016-07-15 | 1 | -7/+17 |
| | | | | | | | | | | | | __fspath__() raises an exception. Thanks to Xiang Zhang for the patch. | ||||
* | | Issue #25507: Move 4 objects from pyshell to run and switch inports. | Terry Jan Reedy | 2016-07-15 | 3 | -110/+114 |
| | | | | | | | | This removes one problem inport and reduces len(sys.modules) by 37. | ||||
* | | merge 3.5 (#27514) | Benjamin Peterson | 2016-07-15 | 1 | -2/+4 |
|\ \ | |/ | |||||
| * | make too many nested blocks be a SyntaxError instead of a SystemError ↵ | Benjamin Peterson | 2016-07-15 | 1 | -2/+4 |
| | | | | | | | | | | | | (closes #27514) Patch by Ammar Askar. | ||||
* | | Backed out changeset af29d89083b3 (closes #25548) (closes #27498) | Benjamin Peterson | 2016-07-14 | 18 | -100/+89 |
| | | |||||
* | | Issue #27369: Merge test_pyexpat from 3.5 | Martin Panter | 2016-07-14 | 1 | -4/+2 |
|\ \ | |/ | |||||
| * | Issue #27369: Merge test_pyexpat from 3.4 into 3.5 | Martin Panter | 2016-07-14 | 1 | -4/+2 |
| |\ | |||||
| | * | Issue #27369: Merge test_pyexpat from 3.3 into 3.4 | Martin Panter | 2016-07-14 | 1 | -4/+2 |
| | |\ | |||||
| | | * | Issue #27369: Merge test_pyexpat from 3.2 into 3.3 | Martin Panter | 2016-07-14 | 1 | -4/+2 |
| | | |\ | |||||
| | | | * | Issue #27369: Don’t test error message detail that changed in Expat 2.2.03.2 | Martin Panter | 2016-07-14 | 1 | -4/+2 |
| | | | | |