Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #27842: The csv.DictReader now returns rows of type OrderedDict. | Raymond Hettinger | 2016-08-30 | 1 | -0/+16 |
| | |||||
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Raymond Hettinger | 2016-08-30 | 16 | -31/+31 |
| | |||||
* | Merge with 3.5 | Zachary Ware | 2016-08-30 | 1 | -1/+5 |
|\ | |||||
| * | Skip test_tools.test_i18n when pygettext.py is missing | Zachary Ware | 2016-08-30 | 1 | -1/+5 |
| | | |||||
* | | Issue #27870: A left shift of zero by a large integer no longer attempts to ↵ | Mark Dickinson | 2016-08-29 | 1 | -0/+15 |
| | | | | | | | | allocate large amounts of memory. | ||||
* | | Issue 23229: add cmath.inf, cmath.nan, cmath.infj and cmath.nanj. | Mark Dickinson | 2016-08-29 | 1 | -0/+17 |
| | | |||||
* | | Issue #26027: Fix test_path_t_converter on Windows | Berker Peksag | 2016-08-27 | 1 | -1/+1 |
| | | |||||
* | | Don't test for path-like bytes paths on Windows | Brett Cannon | 2016-08-27 | 1 | -2/+7 |
| | | |||||
* | | Issue #27506: Support bytes/bytearray.translate() delete as keyword argument | Martin Panter | 2016-08-27 | 1 | -18/+31 |
| | | | | | | | | Patch by Xiang Zhang. | ||||
* | | Issue #19884: Merge Readline updates from 3.5 | Martin Panter | 2016-08-27 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #19884: Avoid spurious output on OS X with Gnu Readline | Martin Panter | 2016-08-27 | 1 | -1/+1 |
| | | | | | | | | | | Also adjust the test condition, because enable-meta-key was only added in 6.1, not 6.0. | ||||
* | | Issue #12319: Always send file request bodies using chunked encoding | Martin Panter | 2016-08-27 | 2 | -29/+54 |
| | | | | | | | | | | | | | | The previous attempt to determine the file’s Content-Length gave a false positive for pipes on Windows. Also, drop the special case for sending zero-length iterable bodies. | ||||
* | | Issue #26027: Don't test for bytearray in path_t as that's now | Brett Cannon | 2016-08-27 | 1 | -7/+2 |
| | | | | | | | | deprecated. | ||||
* | | Issue #26027, #27524: Add PEP 519/__fspath__() support to os and | Brett Cannon | 2016-08-26 | 5 | -18/+302 |
| | | | | | | | | | | | | os.path. Thanks to Jelle Zijlstra for the initial patch against posixmodule.c. | ||||
* | | Merge | Raymond Hettinger | 2016-08-26 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue 19504: Change "customise" to "customize" American spelling. | Raymond Hettinger | 2016-08-26 | 2 | -2/+2 |
| | | |||||
* | | Fix typo in test name | Berker Peksag | 2016-08-24 | 1 | -1/+1 |
| | | | | | | | | Noticed by Xiang Zhang. | ||||
* | | Issue #12319: Support for chunked encoding of HTTP request bodies | Martin Panter | 2016-08-24 | 2 | -26/+228 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When the body object is a file, its size is no longer determined with fstat(), since that can report the wrong result (e.g. reading from a pipe). Instead, determine the size using seek(), or fall back to chunked encoding for unseekable files. Also, change the logic for detecting text files to check for TextIOBase inheritance, rather than inspecting the “mode” attribute, which may not exist (e.g. BytesIO and StringIO). The Content-Length for text files is no longer determined ahead of time, because the original logic could have been wrong depending on the codec and newline translation settings. Patch by Demian Brecht and Rolf Krahl, with a few tweaks by me. | ||||
* | | Remove expected failure from test of _product internal function. | Steven D'Aprano | 2016-08-24 | 1 | -2/+2 |
| | | |||||
* | | Remove support for nth root of negative numbers with odd powers. | Steven D'Aprano | 2016-08-24 | 1 | -24/+5 |
| | | | | | | | | | | | | | | Although nth roots of negative numbers are real for odd n, the statistics module doesn't make use of this. Remove support for negative roots from the private _nth_root function, which simplifies the test suite. | ||||
* | | Backed out changeset 1017215f5492 | Mark Dickinson | 2016-08-23 | 1 | -141/+0 |
| | | |||||
* | | Issue #27834: Avoid overflow error in ZoneInfo.invert(). | Alexander Belopolsky | 2016-08-23 | 1 | -3/+3 |
| | | |||||
* | | Issue #27787: No longer call deleted test_main(). | Terry Jan Reedy | 2016-08-23 | 1 | -1/+1 |
| | | |||||
* | | A new version of typing.py from https://github.com/python/typing. (Merge ↵ | Guido van Rossum | 2016-08-23 | 1 | -1/+12 |
|\ \ | |/ | | | | | 3.5->3.6) | ||||
| * | A new version of typing.py from https://github.com/python/typing. | Guido van Rossum | 2016-08-23 | 1 | -1/+12 |
| | | |||||
* | | Issue 27598: Add Collections to collections.abc. | Guido van Rossum | 2016-08-23 | 2 | -8/+99 |
| | | | | | | | | Patch by Ivan Levkivskyi, docs by Neil Girdhar. | ||||
* | | Automated merge with ssh://hg.python.org/cpython | Steven D'Aprano | 2016-08-23 | 1 | -0/+20 |
|\ \ | |||||
| * | | Issue #27573 make the exit message configurable. | Steven D'Aprano | 2016-08-23 | 1 | -0/+20 |
| | | | |||||
* | | | Issue #26040 (part 1): add new testcases to cmath_testcases.txt. Thanks Jeff ↵ | Mark Dickinson | 2016-08-23 | 1 | -0/+141 |
| | | | | | | | | | | | | Allen. | ||||
* | | | Issue #27832: Make _normalize parameter to Fraction.__init__ keyword-only. | Mark Dickinson | 2016-08-23 | 1 | -0/+1 |
|/ / | |||||
* | | Issue #27787: Remove test_main() and hard-coded list of test classes | Martin Panter | 2016-08-23 | 1 | -9/+2 |
| | | | | | | | | | | | | The @reap_threads decorator made the test wait (for up to 1 s) until background threads have finished. Calling join() with a timeout should be equivalent. | ||||
* | | Issue #12713: reverted fix pending further discussion. | Vinay Sajip | 2016-08-23 | 1 | -65/+27 |
| | | |||||
* | | Issue #27829: libregrtest.save_env: flush stderr | Victor Stinner | 2016-08-22 | 1 | -6/+4 |
| | | | | | | | | | | | | Use flush=True to try to get a warning which is missing in buildbots. Use also f-string to make the code shorter. | ||||
* | | Cleanup libregrtest | Victor Stinner | 2016-08-22 | 2 | -37/+20 |
| | | | | | | | | | | * main.py: remove unused import * runtest: simplify runtest_inner() parameters, reuse ns parameter | ||||
* | | Issue #27792: force int return type for modulo operations involving bools. | Mark Dickinson | 2016-08-22 | 1 | -0/+7 |
| | | |||||
* | | Issue #27539: Merge from 3.5. | Mark Dickinson | 2016-08-22 | 1 | -0/+13 |
|\ \ | |/ | |||||
| * | Issue #27539: Fix unnormalised Fraction.__pow__ result for negative exponent ↵ | Mark Dickinson | 2016-08-22 | 1 | -0/+13 |
| | | | | | | | | and base. Thanks Vedran Čačić. | ||||
* | | Issue #26984: int() now always returns an instance of exact int. | Serhiy Storchaka | 2016-08-21 | 1 | -1/+4 |
| | | |||||
* | | Merge #27782 fix from 3.5 | Nick Coghlan | 2016-08-21 | 1 | -0/+9 |
|\ \ | |/ | |||||
| * | Issue #27782: Fix m_methods handling in multiphase init | Nick Coghlan | 2016-08-21 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | Multi-phase extension module import now correctly allows the ``m_methods`` field to be used to add module level functions to instances of non-module types returned from ``Py_create_mod``. Patch by Xiang Zhang. | ||||
* | | Issue #27487: Merge runpy warning from 3.5 | Martin Panter | 2016-08-21 | 2 | -10/+38 |
|\ \ | |/ | |||||
| * | Issue #27487: Warn if submodule already imported before runpy execution | Martin Panter | 2016-08-21 | 2 | -10/+38 |
| | | | | | | | | Also try to clarify the find_spec() error message. | ||||
* | | issue26981: add _order_ compatibility shim to enum.Enum | Ethan Furman | 2016-08-20 | 1 | -0/+62 |
| | | |||||
* | | Issue #27614: Merge test_docxmlrpc from 3.5 | Martin Panter | 2016-08-20 | 1 | -30/+11 |
|\ \ | |/ | |||||
| * | Issue #27614: Avoid race in test_docxmlrpc server setup | Martin Panter | 2016-08-20 | 1 | -30/+11 |
| | | |||||
* | | Issue #27787: Merge regrtest fixup from 3.5 | Martin Panter | 2016-08-20 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | Issue #27787: Clean up weak references before checking for dangling threads | Martin Panter | 2016-08-20 | 1 | -0/+1 |
| | | |||||
* | | Issue26988: remove AutoEnum | Ethan Furman | 2016-08-20 | 1 | -323/+1 |
| | | |||||
* | | regrtest: replace "Result:" with "Tests result:" | Victor Stinner | 2016-08-19 | 2 | -2/+2 |
| | | |||||
* | | Issue #27801: Merge from 3.5 | Berker Peksag | 2016-08-19 | 1 | -0/+1 |
|\ \ | |/ |