summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-40241: What's New in Python 3.9: opaque PyGC_Head (GH-20586)Miss Islington (bot)2020-06-021-0/+4
* bpo-40244: Remove XLC's support from the noreturn flag (GH-20588)Miss Islington (bot)2020-06-021-2/+2
* Ensure correct version of Sphinx is used for Windows builds (GH-20582)Miss Islington (bot)2020-06-011-1/+1
* [3.9] bpo-40630: Add tracemalloc.reset_peak (GH-20102) (GH-20545)Huon Wilson2020-06-017-1/+138
* Make sure that keyword arguments are merged into the arguments dictionary whe...Miss Islington (bot)2020-06-012-0/+21
* bpo-40831: Remove an incorrect statement in the Windows docs (GH-20570)Miss Islington (bot)2020-06-011-3/+1
* bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397)Miss Islington (bot)2020-06-013-11/+48
* bpo-17005: Move topological sort functionality to its own module (GH-20558)Miss Islington (bot)2020-06-0110-717/+714
* Fix typo in "What's new in Python 3.9" (GH-20559)Miss Islington (bot)2020-05-311-1/+1
* bpo-40759: Deprecate the symbol module (GH-20364)Miss Islington (bot)2020-05-314-3/+19
* Fix asyncio.to_thread() documented return type (GH-20547)Miss Islington (bot)2020-05-312-3/+2
* bpo-40829: Add a what's new entry about deprecation of shuffle's random param...Miss Islington (bot)2020-05-301-0/+3
* bpo-40798: Generate a different message for already removed elements (GH-20483)Miss Islington (bot)2020-05-302-2/+12
* closes bpo-29017: Update the bindings for Qt information with PySide2 (GH-20149)Miss Islington (bot)2020-05-301-5/+6
* bpo-39885: Make IDLE context menu cut and copy work again (GH-18951)Miss Islington (bot)2020-05-294-16/+52
* Further de-linting of zoneinfo module (GH-20499)Miss Islington (bot)2020-05-294-12/+5
* bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435) (GH...Miss Islington (bot)2020-05-293-0/+24
* bpo-40784: Fix sqlite3 deterministic test (GH-20448)Miss Islington (bot)2020-05-291-9/+27
* bpo-39040: Fix parsing of email mime headers with whitespace between encoded-...Miss Islington (bot)2020-05-293-0/+30
* Indicate that abs() method accept argument that implement __abs__(), just lik...Miss Islington (bot)2020-05-291-3/+2
* bpo-30064: Properly skip unstable loop.sock_connect() racing test (GH-20494)Miss Islington (bot)2020-05-281-20/+26
* Note the output ordering of combinatoric functions (GH-19732) (GH-20501)Miss Islington (bot)2020-05-281-9/+9
* bpo-40806: itertools.product immediately consumes its inputs (GH-20492) (GH-2...Miss Islington (bot)2020-05-281-0/+3
* [3.9] bpo-40777: Initialize PyDateTime_IsoCalendarDateType.tp_base at run-tim...Miss Islington (bot)2020-05-282-3/+12
* bpo-1294959: Try to clarify the meaning of platlibdir (GH-20332)Miss Islington (bot)2020-05-283-8/+8
* bpo-37878: PyThreadState_DeleteCurrent() was not removed (GH-20489)Miss Islington (bot)2020-05-281-3/+2
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Miss Islington (bot)2020-05-2812-94/+87
* bpo-30064: Fix unstable asyncio "racing" socket tests (GH-20485)Miss Islington (bot)2020-05-281-0/+4
* [3.9] bpo-40791: Use CRYPTO_memcmp() for compare_digest (GH-20456) (GH-20461)Christian Heimes2020-05-287-37/+221
* Improve IO tutorial's "Old string formatting" section (GH-16251)Miss Islington (bot)2020-05-281-5/+5
* bpo-39939: Fix removeprefix issue number in the What's New in Python 3.9 (GH-...Miss Islington (bot)2020-05-281-1/+1
* bpo-40795: ctypes calls unraisablehook with an exception (GH-20452)Miss Islington (bot)2020-05-276-41/+79
* Fix compiler warnings in _zoneinfo.c (GH-20342)Miss Islington (bot)2020-05-271-30/+26
* [3.9] bpo-40614: Respect feature version for f-string debug expressions (GH-2...Pablo Galindo2020-05-274-0/+17
* bpo-30064: Fix asyncio loop.sock_* race condition issue (GH-20369)Miss Islington (bot)2020-05-273-16/+157
* [3.9] Backport GH-20440: Set p->error_indicator in more places (GH-20457)Lysandros Nikolaou2020-05-271-0/+5
* [3.9] Backport GH-20370 and GH-20436: Soft keywords (GH-20458)Lysandros Nikolaou2020-05-274-6/+105
* bpo-13097: ctypes: limit callback to 1024 arguments (GH-19914)Miss Islington (bot)2020-05-273-0/+31
* Fix the link to ncurses patch download in macos installer build script (GH-20...Miss Islington (bot)2020-05-271-1/+1
* bpo-39244: multiprocessing return default start method first on macOS (GH-18625)Miss Islington (bot)2020-05-263-4/+9
* bpo-38580: Document that select() accepts iterables, not just sequences (GH-1...Miss Islington (bot)2020-05-263-8/+8
* bpo-40737: Fix possible reference leak for sqlite3 initialization (GH-20323)Miss Islington (bot)2020-05-262-8/+13
* bpo-40637: Fix test_pbkdf2_hmac_py for missing sha1 (GH-20422)Miss Islington (bot)2020-05-261-9/+23
* bpo-39301: State that floor division is used for right shift operations (GH-2...Miss Islington (bot)2020-05-261-4/+2
* bpo-35714: Reject null characters in struct format strings (GH-16928)Miss Islington (bot)2020-05-263-0/+15
* Simplify creation of the __new__ method in namedtuple() (GH-20361) (GH-20409)Miss Islington (bot)2020-05-261-4/+2
* Fix peg_generator compiler warnings under MSVC (GH-20405)Miss Islington (bot)2020-05-262-8/+4
* bpo-40745: Fix typos in NewType docs (GH-20379)Miss Islington (bot)2020-05-261-2/+2
* [3.9] closes bpo-40774: Fix docs indentation for asyncio.create_subprocess_sh...Benjamin Peterson2020-05-261-8/+8
* [3.9] bpo-38964: Print correct filename on a SyntaxError in an fstring (GH-20...Lysandros Nikolaou2020-05-263-6/+16