summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue27181 add geometric mean.Steven D'Aprano2016-08-091-0/+285
|
* Tighten up test of harmonic mean on a single value.Steven D'Aprano2016-08-091-4/+1
|
* Automated merge with ssh://hg.python.org/cpythonSteven D'Aprano2016-08-091-10/+149
|\
| * Add harmonic mean and tests.Steven D'Aprano2016-08-091-10/+149
| |
* | Closes #27710: Disallow fold not in [0, 1] in time and datetime constructors.Alexander Belopolsky2016-08-081-0/+5
|/
* Issue #27664: Add to concurrent.futures.thread.ThreadPoolExecutor()Gregory P. Smith2016-08-071-0/+24
| | | | the ability to specify a thread name prefix.
* Issue #26754: Undocumented support of general bytes-like objectsSerhiy Storchaka2016-08-064-8/+21
| | | | as path in compile() and similar functions is now deprecated.
* Issue #26800: Undocumented support of general bytes-like objectsSerhiy Storchaka2016-08-062-2/+11
| | | | as paths in os functions is now deprecated.
* Closes #22829: Added --prompt option to venv.Vinay Sajip2016-08-061-0/+11
|
* Add AutoEnum: automatically provides next value if missing. Issue 26988.Ethan Furman2016-08-051-1/+323
|
* Merge spelling and grammar fixes from 3.5Martin Panter2016-08-053-3/+3
|\
| * Fix spelling and grammar in documentation and code commentsMartin Panter2016-08-043-3/+3
| |
* | Closes #27661: Added tzinfo keyword argument to datetime.combine.Alexander Belopolsky2016-08-021-1/+12
| |
* | [merge from 3.5] - Prevent HTTPoxy attack (CVE-2016-1000110)Senthil Kumaran2016-07-311-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 Kumaran2016-07-311-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 Kumaran2016-07-311-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 Kumaran2016-07-311-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 Belopolsky2016-07-301-1/+1
| | | |
* | | | Issue #27366: Tweak PEP 487 documentationBerker Peksag2016-07-301-22/+22
| | | | | | | | | | | | | | | | | | | | | | | | * Added versionadded directives * Deleted duplicate sentence from __init_subclass__ docstring * Modernized tests
* | | | Issue #27366: Implement PEP 487Nick Coghlan2016-07-304-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 Sajip2016-07-291-0/+112
| | | |
* | | | Issue #27626: Further spelling fixes for 3.6Martin Panter2016-07-281-1/+1
| | | |
* | | | Issue #27626: Merge spelling fixes from 3.5Martin Panter2016-07-2810-21/+21
|\ \ \ \ | |/ / /
| * | | Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-2810-21/+21
| | | | | | | | | | | | | | | | Based on patch by Ville Skyttä.
* | | | Issue #24773: Fixed tests failures on systems with 32-bit time_t.Alexander Belopolsky2016-07-261-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 Reedy2016-07-251-0/+2
| | | |
* | | | Issue #1621: Avoid signed overflow in list and tuple operationsMartin Panter2016-07-251-1/+13
| | | | | | | | | | | | | | | | Patch by Xiang Zhang.
* | | | Issue 24773: Make zoneinfo tests more robust. (reapply)Alexander Belopolsky2016-07-251-2/+5
| | | |
* | | | Reindented Lib/test/datetimetester.py.Alexander Belopolsky2016-07-241-2/+2
| | | |
* | | | Issue #24773: Made ZoneInfoCompleteTest a TestSuit.Alexander Belopolsky2016-07-242-20/+29
| | | | | | | | | | | | | | | | This should improve the diagnostic and progress reports.
* | | | Issue 24773: Make zoneinfo tests more robust.Alexander Belopolsky2016-07-231-2/+5
| | | |
* | | | Issue #13849: Merge from 3.5Berker Peksag2016-07-231-1/+1
|\ \ \ \ | |/ / /
| * | | Issue #13849: Fix test_null_bytes under WindowsBerker Peksag2016-07-231-1/+1
| | | |
* | | | Issue #13849: Merge from 3.5Berker Peksag2016-07-231-0/+9
|\ \ \ \ | |/ / /
| * | | Issue #13849: Add tests for null byte checking in test_genericpathBerker Peksag2016-07-231-0/+9
| | | |
* | | | Issue #27493: Fix test_path_objects under WindowsBerker Peksag2016-07-231-1/+1
| | | |
* | | | Issue #27130: Merge zlib 64-bit fixes from 3.5Martin Panter2016-07-231-16/+48
|\ \ \ \ | |/ / /
| * | | Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” moduleMartin Panter2016-07-231-16/+48
| | | | | | | | | | | | | | | | Patch by Xiang Zhang.
* | | | Closes issue #24773: Implement PEP 495 (Local Time Disambiguation).Alexander Belopolsky2016-07-222-8/+803
| | | |
* | | | Closes #27493: accepted Path objects in file handlers for logging.Vinay Sajip2016-07-221-0/+24
| | | |
* | | | Closes #26559: Allow configuring flush-on-close behaviour of MemoryHandler.Vinay Sajip2016-07-221-1/+31
| | | |
* | | | Issue #27472: Add test.support.unix_shell as the path to the default shell.Xavier de Gaye2016-07-223-8/+16
| | | |
* | | | Issue #27528: Merge warning doc and test from 3.5Martin Panter2016-07-191-0/+12
|\ \ \ \ | |/ / /
| * | | Issue #27528: Document and test warning messages must match at beginningMartin Panter2016-07-191-0/+12
| | | |
* | | | Merge 3.5.Stefan Krah2016-07-171-0/+28
|\ \ \ \ | |/ / /
| * | | Issue #26974: Fix segfault in the presence of absurd subclassing. ProactivelyStefan Krah2016-07-171-0/+28
| | | | | | | | | | | | | | | | eliminate all internal uses of overridden methods.
* | | | Issue #17711: Fixed unpickling by the persistent ID with protocol 0.Serhiy Storchaka2016-07-172-8/+54
|\ \ \ \ | |/ / / | | | | | | | | Original patch by Alexandre Vassalotti.
| * | | Issue #17711: Fixed unpickling by the persistent ID with protocol 0.Serhiy Storchaka2016-07-172-8/+54
| | | | | | | | | | | | | | | | Original patch by Alexandre Vassalotti.
* | | | Merge for #27083Brett Cannon2016-07-163-18/+18
|\ \ \ \ | |/ / /
| * | | Fix regressions introduced by fixes for issue #27083.Brett Cannon2016-07-163-18/+18
| | | |