summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* fix dangling keyfunc examples in documentation of heapq and sorted (GH-1432)Miss Islington (bot)2018-10-152-7/+7
* bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9...Miss Islington (bot)2018-10-144-5/+24
* Update compound_stmts.rst (GH-9864) (GH-9869)Miss Islington (bot)2018-10-141-4/+4
* bpo-34941: Fix searching Element subclasses. (GH-9766)Miss Islington (bot)2018-10-143-12/+31
* bpo-33656: Move pyshell ctypes import inside try block. (GH-9858)Miss Islington (bot)2018-10-131-3/+3
* Post release bumpNed Deily2018-10-132-3/+3
* Merge tag 'v3.7.1rc2' into 3.7Ned Deily2018-10-1320-87/+187
|\
| * 3.7.1rc2v3.7.1rc2Ned Deily2018-10-1320-35/+166
| * bpo-34370: Revert to using released Tk 8.6.8 with macOS installersNed Deily2018-10-132-55/+24
* | bpo-34970: Protect tasks weak set manipulation in asyncio.all_tasks() (GH-983...Miss Islington (bot)2018-10-132-2/+7
* | Add new tests for bytes and bytearray constructors. (GH-9843)Miss Islington (bot)2018-10-131-3/+43
* | bpo-16965: 2to3 now rewrites execfile() to open with 'rb'. (GH-8569)Miss Islington (bot)2018-10-133-9/+12
|/
* bpo-34783: Disable test_nonexisting_script for macOS framework builds (GH-98...Miss Islington (bot)2018-10-131-0/+4
* bpo-34203: FAQ now recommends python 3.x over 2.x (GH-9796)Miss Islington (bot)2018-10-121-6/+8
* bpo-34900: Make TestCase.debug() work with subtests (GH-9707)Miss Islington (bot)2018-10-123-1/+17
* bpo-31516: Skip test_main_thread_during_shutdown() with COUNT_ALLOCS builds. ...Miss Islington (bot)2018-10-121-0/+1
* Fix an incorrect check in compiler_try_except(). (GH-9810)Miss Islington (bot)2018-10-121-1/+2
* Fix a possible decref of a borrowed reference in symtable.c. (GH-9786)Miss Islington (bot)2018-10-101-2/+4
* [3.7] bpo-34922: Fix integer overflow in the digest() and hexdigest() methods...Serhiy Storchaka2018-10-113-1/+21
* bpo-34576 warn users on security for http.server (GH-9720)Miss Islington (bot)2018-10-101-0/+8
* [3.7] bpo-34906: Doc: Fix typos (2) (GH-9735)Stéphane Wirtel2018-10-1028-53/+53
* bpo-23596: Add unit tests for the command line for the gzip module (GH-9775)Miss Islington (bot)2018-10-091-6/+93
* bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716)Miss Islington (bot)2018-10-093-4/+71
* bpo-32962: Fix test_gdb failure in debug build with -mcet -fcf-protection -O0...Miss Islington (bot)2018-10-092-1/+33
* bpo-32174: Let .chm document display non-ASCII characters properly (GH-9758)Miss Islington (bot)2018-10-083-1/+42
* bpo-34901: add isolated (-I) flag to sys.flags (GH-9708)Miss Islington (bot)2018-10-071-0/+4
* bpo-6721: Hold logging locks across fork() (GH-4071) (#9291)Miss Islington (bot)2018-10-073-0/+119
* bpo-34334: Don't log traceback twice in QueueHandler (GH-9537) (GH-9581)Miss Islington (bot)2018-10-074-5/+23
* Correct grammar mistake in re.rst. (GH-9745)Miss Islington (bot)2018-10-061-1/+1
* bpo-34909: keep searching mixins until base class is found (GH-9737) (GH-9738)Miss Islington (bot)2018-10-062-3/+22
* bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)Miss Islington (bot)2018-10-062-2/+5
* [3.7] bpo-34158: Documentation UTC offset update (GH-8377) (GH-9732)Miss Islington (bot)2018-10-051-20/+21
* [3.7] Make it clear that the msg argument to assertWarns/assertWarnsRegex/ass...Miss Islington (bot)2018-10-051-3/+3
* Fix markup for xml.sax in 3.7.rst (GH-9604)Andrés Delfino2018-10-051-1/+1
* Clarify that AsyncExitStack works with coroutine functions (GH-9405) (GH-9408)Miss Islington (bot)2018-10-051-2/+2
* bpo-34565: Change a PC/launcher.c comment to accurately describe valid major ...Miss Islington (bot)2018-10-051-2/+2
* bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-...Miss Islington (bot)2018-10-051-1/+1
* [3.7] Fix a compiler warning added in bpo-34872. (GH-9722). (GH-9726)Serhiy Storchaka2018-10-051-1/+1
* Use assertEqual() instead of assertEquals(). (GH-9721) (GH-9725)Serhiy Storchaka2018-10-051-1/+1
* bpo-34902: Fixes VM image for Azure Pipelines build (GH-9719)Miss Islington (bot)2018-10-052-2/+2
* bpo-34825: Add more entries to os to pathlib reference table (GH-9608) (#9717)Miss Islington (bot)2018-10-051-20/+27
* bpo-34906: Doc: Fix typos (GH-9712)Miss Islington (bot)2018-10-056-6/+6
* Fix a typo ssl.py docstring (GH-9697) (GH-9709)Miss Islington (bot)2018-10-051-1/+1
* bpo-34871: inspect: Don't pollute sys.modules (GH-9696) (#9701)Miss Islington (bot)2018-10-042-1/+3
* [3.7] bpo-34872: Fix self-cancellation in C implementation of asyncio.Task (G...Elvis Pranskevichus2018-10-033-3/+45
* bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683)Miss Islington (bot)2018-10-022-1/+3
* bpo-34172: multiprocessing.Pool leaks resources after being deleted (GH-8450)...Miss Islington (bot)2018-10-023-24/+57
* Make it clear that the msg argument to assertRaises is keyword-only. (GH-9670)Miss Islington (bot)2018-10-011-1/+1
* closes bpo-34868: Improve error message with '_' is combined with an invalid ...Miss Islington (bot)2018-10-012-8/+12
* bpo-31865: Fix a couple of typos in the html.unescape() docs. (GH-9663)Miss Islington (bot)2018-10-011-1/+1