summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-26543: Fix IMAP4.noop when debug mode is enabled (GH-15206)Sanyam Khurana2020-06-023-7/+21
* Ensure correct version of Sphinx is used for Windows builds (GH-20582)Steve Dower2020-06-011-1/+1
* bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20579)Victor Stinner2020-06-012-29/+73
* bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h (GH-18...Skip Montanaro2020-06-0120-151/+2
* bpo-40826: PyOS_InterruptOccurred() requires GIL (GH-20578)Victor Stinner2020-06-012-2/+5
* bpo-40630: adjust tracemalloc.reset_peak docs for backport to 3.9 (GH-20546)Huon Wilson2020-06-014-10/+7
* bpo-39943: Fix MSVC warnings in sre extension (GH-20508)Ammar Askar2020-06-012-3/+10
* bpo-39593: Add test on ctypes cfield.c s_set() (GH-18424)Hai Shi2020-06-012-1/+11
* bpo-1635741: Port fcntl module to multiphase initialization (GH-20540)Dong-hee Na2020-06-012-22/+20
* bpo-40831: Remove an incorrect statement in the Windows docs (GH-20570)Zackery Spytz2020-06-011-3/+1
* bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)Victor Stinner2020-06-016-31/+40
* Make sure that keyword arguments are merged into the arguments dictionary whe...Mark Shannon2020-06-012-0/+21
* bpo-30008: Fix OpenSSL no-deprecated compilation (GH-20397)Christian Heimes2020-06-013-11/+48
* bpo-17005: Move topological sort functionality to its own module (GH-20558)Pablo Galindo2020-05-3110-717/+714
* Fix typo in "What's new in Python 3.9" (GH-20559)Lysandros Nikolaou2020-05-311-1/+1
* bpo-40759: Deprecate the symbol module (GH-20364)Batuhan Taskaya2020-05-314-3/+19
* bpo-40755: Add rich comparisons to Counter (GH-20548)Raymond Hettinger2020-05-315-195/+76
* Fix asyncio.to_thread() documented return type (GH-20547)Kyle Stanley2020-05-312-3/+2
* bpo-40829: Add a what's new entry about deprecation of shuffle's random param...Batuhan Taskaya2020-05-301-0/+3
* bpo-40061: Fix a possible refleak in _asynciomodule.c (GH-19748)Zackery Spytz2020-05-301-0/+1
* bpo-40798: Generate a different message for already removed elements (GH-20483)Florian Dahlitz2020-05-302-2/+12
* closes bpo-29017: Update the bindings for Qt information with PySide2 (GH-20149)Samuel Gaist2020-05-301-5/+6
* bpo-39885: Make IDLE context menu cut and copy work again (GH-18951)Terry Jan Reedy2020-05-294-16/+52
* bpo-29882: Add an efficient popcount method for integers (#771)Niklas Fiekas2020-05-297-2/+135
* Further de-linting of zoneinfo module (#20499)Paul Ganssle2020-05-294-12/+5
* bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435)Mark Dickinson2020-05-293-0/+24
* Indicate that abs() method accept argument that implement __abs__(), just lik...Windson yang2020-05-291-3/+2
* bpo-39040: Fix parsing of email mime headers with whitespace between encoded-...Abhilash Raj2020-05-293-0/+30
* bpo-40784: Fix sqlite3 deterministic test (GH-20448)Erlend Egeberg Aasland2020-05-281-9/+27
* bpo-30064: Properly skip unstable loop.sock_connect() racing test (GH-20494)Fantix King2020-05-281-20/+26
* Note the output ordering of combinatoric functions (GH-19732)Ruaridh Williamson2020-05-281-9/+9
* bpo-40474: Updated coverage.yml to better report coverage stats (#19851)lrjball2020-05-282-0/+4
* bpo-40806: Clarify that itertools.product immediately consumes its inpt (GH-2...Ramil Nugmanov2020-05-281-0/+3
* bpo-1294959: Try to clarify the meaning of platlibdir (GH-20332)Michał Górny2020-05-283-8/+8
* bpo-37878: PyThreadState_DeleteCurrent() was not removed (GH-20489)Victor Stinner2020-05-281-3/+2
* bpo-40777: Initialize PyDateTime_IsoCalendarDateType.tp_base at run-time (GH-...Petr Viktorin2020-05-282-3/+12
* bpo-40755: Add missing multiset operations to Counter() (GH-20339)Raymond Hettinger2020-05-284-6/+206
* bpo-25920: Remove socket.getaddrinfo() lock on macOS (GH-20177)Victor Stinner2020-05-282-47/+9
* bpo-40275: Fix test.support.threading_helper (GH-20488)Victor Stinner2020-05-281-6/+7
* bpo-40275: Remove test.support.TESTFN_ENCODING (GH-20482)Hai Shi2020-05-284-14/+10
* bpo-30064: Fix unstable asyncio "racing" socket tests (GH-20485)Victor Stinner2020-05-281-0/+4
* Revert "Upgrade bundled versions of pip & setuptools (#16782)" (GH-20484)Victor Stinner2020-05-285-7/+6
* bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...Serhiy Storchaka2020-05-2851-187/+187
* Improve IO tutorial's "Old string formatting" section (GH-16251)Adorilson Bezerra2020-05-281-5/+5
* bpo-39939: Fix removeprefix issue number in the What's New in Python 3.9 (GH...Elazar Gershuni2020-05-281-1/+1
* bpo-40275: test.support imports subprocess lazily (GH-20471)Victor Stinner2020-05-271-3/+11
* bpo-40275: test.support.check_impl_detail() uses sys.implementation (GH-20468)Victor Stinner2020-05-271-1/+1
* bpo-40795: ctypes calls unraisablehook with an exception (GH-20452)Victor Stinner2020-05-276-41/+79
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-2746-428/+483
* Revert "bpo-32604: PEP 554 for use in test suite (GH-19985)" (#20465)Pablo Galindo2020-05-274-865/+0