summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Revert "bpo-37193: remove thread objects which finished process its request (...revert-13893-fix-issue-37193Jason R. Coombs2020-11-023-86/+13
* bpo-42230: Improve asyncio documentation regarding accepting sets vs iterable...Jakub Stasiak2020-11-022-6/+6
* bpo-41229: Update docs for explicit aclose()-required cases and add contextli...Joongi Kim2020-11-025-4/+133
* Minor formatting edits to the descriptor howto guide (GH-23092)Raymond Hettinger2020-11-011-19/+20
* bpo-40511: Stop unwanted flashing of IDLE calltips (GH-20910)Tal Einat2020-11-014-7/+144
* Add member objects to the descriptor howto guide (GH-23084)Raymond Hettinger2020-11-011-0/+156
* bpo-37193: remove thread objects which finished process its request (GH-13893)MARUYAMA Norihiro2020-11-013-13/+86
* bpo-42236: Use UTF-8 encoding if nl_langinfo(CODESET) fails (GH-23086)Victor Stinner2020-11-018-90/+88
* bpo-42236: Enhance _locale._get_locale_encoding() (GH-23083)Victor Stinner2020-11-015-52/+76
* bpo-42233: Correctly repr GenericAlias when used with typing module (GH-23081)kj2020-11-013-0/+12
* Expand and clarify the "Invoking Descriptors" section of the Descriptor HowTo...Raymond Hettinger2020-11-012-38/+79
* bpo-37483: Add PyObject_CallOneArg() in the What's New in Python 3.9 (GH-23062)Dong-hee Na2020-11-011-0/+4
* tempfile: Use random.choises() instead of choise() (GH-23068)Inada Naoki2020-11-012-6/+3
* bpo-29566: binhex.binhex now consitently writes MacOS 9 line endings. (GH-23059)Ronald Oussoren2020-11-013-2/+15
* bpo-42146: Unify cleanup in subprocess_fork_exec() (GH-22970)Alexey Izbyshev2020-10-311-35/+18
* bpo-42198: New section in stdtypes for type annotation types (GH-23063)kj2020-10-311-4/+14
* bpo-42218: Correctly handle errors in left-recursive rules (GH-23065)Lysandros Nikolaou2020-10-314-0/+32
* bpo-42198: Improve consistency of Union docs (GH-23029)kj2020-10-312-24/+15
* bpo-40956: Convert _sqlite3 module level functions to Argument Clinic (GH-22484)Erlend Egeberg Aasland2020-10-314-88/+313
* bpo-42198: Document __new__ for types.GenericAlias (GH-23039)kj2020-10-302-2/+14
* Revert "bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997)"Inada Naoki2020-10-313-13/+14
* bpo-42208: Add _locale._get_locale_encoding() (GH-23052)Victor Stinner2020-10-316-102/+85
* bpo-42208: Add _Py_GetLocaleEncoding() (GH-23050)Victor Stinner2020-10-316-110/+112
* bpo-42214: Fix check for NOTEQUAL token in the PEG parser for the barry_as_fl...Pablo Galindo2020-10-306-5/+23
* GitHub Action: Add gdb to posix dependencies (GH-23043)Victor Stinner2020-10-301-6/+6
* bpo-42208: Call GC collect earlier in PyInterpreterState_Clear() (GH-23044)Victor Stinner2020-10-304-15/+35
* bpo-36876: Small adjustments to the C-analyzer tool. (GH-23045)Eric Snow2020-10-3016-218/+633
* bpo-42208: Fix test_gdb for gc_collect_main() name (GH-23041)Victor Stinner2020-10-301-2/+2
* bpo-42208: Move _PyImport_Cleanup() to pylifecycle.c (GH-23040)Victor Stinner2020-10-302-230/+290
* bpo-42208: Pass tstate to _PyGC_CollectNoFail() (GH-23038)Victor Stinner2020-10-305-34/+25
* DOC: attribute PyPy for the idea behind LOAD_ATTR cache (GH-23036)Matti Picus2020-10-301-1/+1
* bpo-42206: Propagate and raise errors from PyAST_Validate in the parser (GH-2...Batuhan Taskaya2020-10-302-1/+5
* bpo-42172: Correct typo for test_socket.py (GH-23013)Akashkumar D Khunt2020-10-301-3/+3
* bpo-42160: tempfile: Reduce overhead of pid check. (GH-22997)Eric W2020-10-303-14/+13
* bpo-42198: Link to GenericAlias in typing and expressions (GH-23030)kj2020-10-292-44/+75
* bpo-42061: Document __format__ for IP addresses (GH-23018)Teugea Ioan-Teodor2020-10-293-4/+39
* bpo-42180: fix plural in arguments and control (GH-23015)Rafael Fontenelle2020-10-291-1/+1
* bpo-42029: Remove IRIX code (GH-23023)Victor Stinner2020-10-294-25/+8
* bpo-42143: Ensure PyFunction_NewWithQualName() can't fail after creating the ...Yonatan Goldschmidt2020-10-292-13/+18
* bpo-34204: Use pickle.DEFAULT_PROTOCOL in shelve (GH-19639)Zackery Spytz2020-10-295-8/+29
* bpo-41805: Documentation for PEP 585 (GH-22615)kj2020-10-274-0/+211
* bpo-42161: Micro-optimize _collections._count_elements() (GH-23008)Victor Stinner2020-10-271-4/+5
* bpo-42161: Remove private _PyLong_Zero and _PyLong_One (GH-23003)Victor Stinner2020-10-273-23/+0
* bpo-42099: Fix reference to ob_type in unionobject.c and ceval (GH-22829)Neil Schemenauer2020-10-272-2/+2
* bpo-41659: Disallow curly brace directly after primary (GH-22996)Lysandros Nikolaou2020-10-275-167/+244
* bpo-6761: Enhance __call__ documentation (GH-7987)Andre Delfino2020-10-271-1/+1
* bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998)Victor Stinner2020-10-2714-36/+57
* bpo-41474, Makefile: Add dependency on cpython/frameobject.h (GH-22999)Victor Stinner2020-10-271-0/+1
* bpo-42157: Rename unicodedata.ucnhash_CAPI (GH-22994)Victor Stinner2020-10-275-5/+13
* bpo-42161: Use _PyLong_GetZero() and _PyLong_GetOne() (GH-22995)Victor Stinner2020-10-279-40/+68