summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Update comments to reflect the current API (GH-20682)Raymond Hettinger2020-06-061-4/+6
* bpo-40724: Support setting buffer slots from type specs (GH-20648)scoder2020-06-065-2/+60
* bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)Batuhan Taskaya2020-06-063-0/+31
* [workflow] Use gcc problem matcher for Ubuntu action build (GH-18567)Ammar Askar2020-06-062-0/+20
* Refactor scripts in Tools/peg_generator/scripts (GH-20401)Lysandros Nikolaou2020-06-067-144/+143
* bpo-40880: Fix invalid read in newline_in_string in pegen.c (#20666)Pablo Galindo2020-06-052-2/+4
* bpo-40883: Fix memory leak in fstring_compile_expr in parse_string.c (GH-20667)Pablo Galindo2020-06-052-0/+3
* bpo-40862: Raise TypeError when const is given to argparse.BooleanOptionalAct...Rémi Lapeyre2020-06-052-1/+8
* bpo-40867: Remove unused include from Module/_randommodule.c (GH-20635)Erlend Egeberg Aasland2020-06-051-1/+0
* bpo-40876: Clarify error message in the csv module (GH-20653)Ram Rachum2020-06-052-1/+2
* bpo-39791: Refresh importlib.metadata from importlib_metadata 1.6.1. (GH-20659)Jason R. Coombs2020-06-056-18/+84
* Fix missing FloatOperation in EXTRA_FUNCTIONALITY path. (#20655)Stefan Krah2020-06-051-0/+2
* bpo-19468: delete unnecessary instance check in importlib.reload() (GH-19424)Furkan Önder2020-06-052-4/+6
* bpo-40874: Update to libmpdec-2.5.0 (GH-20652)Stefan Krah2020-06-0538-296/+502
* bpo-1635741: Port mmap module to multiphase initialization (GH-19459)Dong-hee Na2020-06-052-74/+81
* bpo-40521: Make context free list per-interpreter (GH-20644)Victor Stinner2020-06-057-28/+34
* bpo-40521: Make async gen free lists per-interpreter (GH-20643)Victor Stinner2020-06-057-46/+67
* bpo-40521: Make list free list per-interpreter (GH-20642)Victor Stinner2020-06-057-40/+49
* bpo-40807: Show warnings once from codeop._maybe_compile (#20486)Cheryl Sabella2020-06-043-9/+20
* bpo-40521: Make frame free list per-interpreter (GH-20638)Victor Stinner2020-06-047-59/+51
* bpo-40521: Make slice cache per-interpreter (GH-20637)Victor Stinner2020-06-045-18/+24
* bpo-40521: Make float free list per-interpreter (GH-20636)Victor Stinner2020-06-047-31/+44
* bpo-40521: Make tuple free list per-interpreter (GH-20247)Victor Stinner2020-06-047-62/+82
* bpo-39573: Porting to Python 3.10: Py_SET_SIZE() macro (GH-20610)Victor Stinner2020-06-041-3/+21
* bpo-40865: Remove unused insint() macro from hash modules (GH-20627)Erlend Egeberg Aasland2020-06-044-12/+0
* Fix spacing in docs for tarfile (GH-20629)Harsha Laxman2020-06-041-1/+1
* bpo-40679: Fix _PyEval_EvalCode() crash if qualname is NULL (GH-20615)Victor Stinner2020-06-042-22/+37
* bpo-17258: Add requires_hashdigest to multiprocessing tests (GH-20412)Christian Heimes2020-06-043-0/+13
* Don't raise an exception on normal return from generator. (GH-19473)Mark Shannon2020-06-042-1/+3
* Fix MSVC warning in frameobject.c (GH-20590)Ammar Askar2020-06-041-1/+3
* Remove unused ReaderObject_Check macro (#20614)Dong-hee Na2020-06-031-2/+0
* Update error message in _zoneinfo.py to use f-string (GH-20577)aboddie2020-06-031-1/+1
* bpo-40471: Fix grammar typo in 'issubclass' docstring (GH-19847)Alex Povel2020-06-032-6/+6
* bpo-40767: Allow pure Wayland to get default XDG web browser (GH-20382)Jeremy Attali2020-06-032-1/+4
* bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599)Victor Stinner2020-06-035-13/+46
* bpo-32604: Fix reference leak in select module (GH-20600)Victor Stinner2020-06-032-2/+2
* PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598)Victor Stinner2020-06-023-6/+9
* bpo-40232: _PyImport_ReInitLock() can now safely use its lock (GH-20597)Victor Stinner2020-06-021-5/+1
* PyOS_AfterFork_Child() uses PyStatus (GH-20596)Victor Stinner2020-06-0210-50/+84
* bpo-39465: Cleanup _PyUnicode_FromId() code (GH-20595)Victor Stinner2020-06-021-10/+16
* bpo-40839: PyDict_GetItem() requires the GIL (GH-20580)Victor Stinner2020-06-024-29/+36
* bpo-35078: Allow customization of CSS class name of a month in calendar modul...Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2020-06-023-17/+31
* bpo-40241: What's New in Python 3.9: opaque PyGC_Head (GH-20586)Victor Stinner2020-06-021-0/+4
* bpo-40244: Remove XLC's support from the noreturn flag (GH-20588)Batuhan Taskaya2020-06-021-2/+2
* Fix MSVC warnings in pythonrun.c (#GH-0587)Ammar Askar2020-06-021-8/+8
* 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