Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix typo in test_time.py | Victor Stinner | 2016-08-17 | 1 | -1/+1 |
| | |||||
* | Issue #27181: Skip tests known to fail until a fix is found | Victor Stinner | 2016-08-16 | 1 | -0/+1 |
| | |||||
* | Issue #25628: Make namedtuple "rename" and "verbose" parameters keyword-only. | Raymond Hettinger | 2016-08-16 | 1 | -0/+12 |
| | |||||
* | merge 3.5 | Benjamin Peterson | 2016-08-16 | 1 | -0/+2 |
|\ | |||||
| * | merge 3.4 | Benjamin Peterson | 2016-08-16 | 1 | -0/+2 |
| |\ | |||||
| | * | fail when negative values are passed to instr() | Benjamin Peterson | 2016-08-16 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #27611, #24137: Only change tkinter when easily restored. | Terry Jan Reedy | 2016-08-16 | 1 | -9/+9 |
| | | | |||||
* | | | Issue #12345: Add mathemathcal constant tau to math and cmath. | Guido van Rossum | 2016-08-15 | 1 | -0/+1 |
| | | | | | | | | | | | | Patch by Lisa Roach. See also PEP 628. | ||||
* | | | Issue #16764: Support keyword arguments to zlib.decompress(). Patch by | Serhiy Storchaka | 2016-08-15 | 1 | -4/+29 |
| | | | | | | | | | | | | Xiang Zhang. | ||||
* | | | Issue #26823: Abbreviate recursive tracebacks | Nick Coghlan | 2016-08-15 | 1 | -0/+131 |
| | | | | | | | | | | | | | | | | | | | | | | | | Large sections of repeated lines in tracebacks are now abbreviated as "[Previous line repeated {count} more times]" by both the traceback module and the builtin traceback rendering. Patch by Emanuel Barry. | ||||
* | | | Issue27573 code.interact prints a message when exiting. | Steven D'Aprano | 2016-08-14 | 1 | -2/+10 |
| | | | |||||
* | | | Issue6422 add autorange method to timeit.Timer | Steven D'Aprano | 2016-08-14 | 1 | -0/+22 |
| | | | |||||
* | | | merge 3.5 | Benjamin Peterson | 2016-08-14 | 1 | -0/+3 |
|\ \ \ | |/ / | |||||
| * | | merge 3.4 | Benjamin Peterson | 2016-08-14 | 1 | -0/+3 |
| |\ \ | | |/ | |||||
| | * | do not allow reading negative values with getstr() | Benjamin Peterson | 2016-08-14 | 1 | -0/+3 |
| | | | |||||
* | | | Issue #24773: Skip system tests for transitions in year 2037 and later. | Alexander Belopolsky | 2016-08-12 | 1 | -3/+5 |
| | | | |||||
* | | | Issue #25805: Skip a test for test_pkgutil when __name__ == __main__. | Brett Cannon | 2016-08-12 | 1 | -0/+1 |
| | | | | | | | | | | | | Thanks to SilentGhost for the patch. | ||||
* | | | Issue #26741: Merge ResourceWarning fixes from 3.5 | Martin Panter | 2016-08-12 | 2 | -2/+13 |
|\ \ \ | |/ / | |||||
| * | | Issue #26741: Clean up subprocess.Popen object in test_poll | Martin Panter | 2016-08-12 | 1 | -1/+2 |
| | | | |||||
| * | | Close HTTP connections and responses in tests to avoid ResourceWarnings | Martin Panter | 2016-08-12 | 1 | -1/+11 |
| | | | |||||
* | | | Issue #24773: Fix and speed-up ZoneInfoCompleteTest. | Alexander Belopolsky | 2016-08-11 | 1 | -13/+13 |
| | | | | | | | | | | | | | | | | | | * Read the zone.tab file for the list of zones to exclude the aliases. * Skip Casablanca and El_Aaiun October 2037 transitions. | ||||
* | | | Merge ISO-8859 fixes from 3.5 | Martin Panter | 2016-08-10 | 1 | -2/+2 |
|\ \ \ | |/ / | |||||
| * | | Correct misspellings of ISO-8859 | Martin Panter | 2016-08-10 | 1 | -2/+2 |
| | | | |||||
| * | | Closes #21999: Handled empty strings correctly when in POSIX mode. | Vinay Sajip | 2016-08-09 | 1 | -0/+12 |
| | | | |||||
* | | | Issue27181 add geometric mean. | Steven D'Aprano | 2016-08-09 | 1 | -0/+285 |
| | | | |||||
* | | | Tighten up test of harmonic mean on a single value. | Steven D'Aprano | 2016-08-09 | 1 | -4/+1 |
| | | | |||||
* | | | Automated merge with ssh://hg.python.org/cpython | Steven D'Aprano | 2016-08-09 | 1 | -10/+149 |
|\ \ \ | |||||
| * | | | Add harmonic mean and tests. | Steven D'Aprano | 2016-08-09 | 1 | -10/+149 |
| | | | | |||||
* | | | | Closes #27710: Disallow fold not in [0, 1] in time and datetime constructors. | Alexander Belopolsky | 2016-08-08 | 1 | -0/+5 |
|/ / / | |||||
* | | | Issue #27664: Add to concurrent.futures.thread.ThreadPoolExecutor() | Gregory P. Smith | 2016-08-07 | 1 | -0/+24 |
| | | | | | | | | | | | | the ability to specify a thread name prefix. | ||||
* | | | Issue #26754: Undocumented support of general bytes-like objects | Serhiy Storchaka | 2016-08-06 | 4 | -8/+21 |
| | | | | | | | | | | | | as path in compile() and similar functions is now deprecated. | ||||
* | | | Issue #26800: Undocumented support of general bytes-like objects | Serhiy Storchaka | 2016-08-06 | 2 | -2/+11 |
| | | | | | | | | | | | | as paths in os functions is now deprecated. | ||||
* | | | Closes #22829: Added --prompt option to venv. | Vinay Sajip | 2016-08-06 | 1 | -0/+11 |
| | | | |||||
* | | | Add AutoEnum: automatically provides next value if missing. Issue 26988. | Ethan Furman | 2016-08-05 | 1 | -1/+323 |
| | | | |||||
* | | | Merge spelling and grammar fixes from 3.5 | Martin Panter | 2016-08-05 | 3 | -3/+3 |
|\ \ \ | |/ / | |||||
| * | | Fix spelling and grammar in documentation and code comments | Martin Panter | 2016-08-04 | 3 | -3/+3 |
| | | | |||||
* | | | Closes #27661: Added tzinfo keyword argument to datetime.combine. | Alexander Belopolsky | 2016-08-02 | 1 | -1/+12 |
| | | | |||||
* | | | [merge from 3.5] - Prevent HTTPoxy attack (CVE-2016-1000110) | Senthil Kumaran | 2016-07-31 | 1 | -0/+12 |
|\ \ \ | |/ / | | | | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin. | ||||
| * | | [merge from 3.4] - Prevent HTTPoxy attack (CVE-2016-1000110) | Senthil Kumaran | 2016-07-31 | 1 | -0/+12 |
| |\ \ | | |/ | | | | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin. | ||||
| | * | [merge from 3.3] Prevent HTTPoxy attack (CVE-2016-1000110) | Senthil Kumaran | 2016-07-31 | 1 | -0/+13 |
| | |\ | | | | | | | | | | | | | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin. | ||||
| | | * | Prevent HTTPoxy attack (CVE-2016-1000110) | Senthil Kumaran | 2016-07-31 | 1 | -0/+13 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ignore the HTTP_PROXY variable when REQUEST_METHOD environment is set, which indicates that the script is in CGI mode. Issue #27568 Reported and patch contributed by Rémi Rampin. | ||||
* | | | | Issue 24773: Use the standard Asia/Tehran name in the Iran test. | Alexander Belopolsky | 2016-07-30 | 1 | -1/+1 |
| | | | | |||||
* | | | | Issue #27366: Tweak PEP 487 documentation | Berker Peksag | 2016-07-30 | 1 | -22/+22 |
| | | | | | | | | | | | | | | | | | | | | | | | | * Added versionadded directives * Deleted duplicate sentence from __init_subclass__ docstring * Modernized tests | ||||
* | | | | Issue #27366: Implement PEP 487 | Nick Coghlan | 2016-07-30 | 4 | -16/+252 |
| | | | | | | | | | | | | | | | | | | | | | | | | - __init_subclass__ called when new subclasses defined - __set_name__ called when descriptors are part of a class definition | ||||
* | | | | Closes #1521950: Made shlex parsing more shell-like. | Vinay Sajip | 2016-07-29 | 1 | -0/+112 |
| | | | | |||||
* | | | | Issue #27626: Further spelling fixes for 3.6 | Martin Panter | 2016-07-28 | 1 | -1/+1 |
| | | | | |||||
* | | | | Issue #27626: Merge spelling fixes from 3.5 | Martin Panter | 2016-07-28 | 10 | -21/+21 |
|\ \ \ \ | |/ / / | |||||
| * | | | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 10 | -21/+21 |
| | | | | | | | | | | | | | | | | Based on patch by Ville Skyttä. | ||||
* | | | | 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 #24137, issue #27611: Restore tkinter after test_idle. | Terry Jan Reedy | 2016-07-25 | 1 | -0/+2 |
| | | | |