summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-1635741: Port time module to multiphase initialization (PEP 489) (GH-19107)Paulo Henrique Silva2020-03-232-51/+54
* bpo-39830: Add zipfile.Path to __all__ (GH-19115)Zackery Spytz2020-03-232-1/+3
* bpo-39999: Improve compatibility of the ast module. (GH-19056)Serhiy Storchaka2020-03-2210-22/+49
* bpo-22490: Remove __PYVENV_LAUNCHER__ from environment during launch (GH-9516)Ronald Oussoren2020-03-225-1/+34
* bpo-40024: Add PyModule_AddType() helper function (GH-19088)Dong-hee Na2020-03-2210-42/+52
* bpo-36543: Remove the xml.etree.cElementTree module. (GH-19108)Serhiy Storchaka2020-03-222-18/+0
* bpo-39652: Truncate the column name after '[' only if PARSE_COLNAMES is set. ...Serhiy Storchaka2020-03-215-14/+32
* bpo-24916: Remove an outdated comment. (GH-19101)Serhiy Storchaka2020-03-211-2/+0
* bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)Victor Stinner2020-03-207-34/+14
* bpo-39947: Add PyThreadState_GetFrame() function (GH-19092)Victor Stinner2020-03-206-5/+33
* bpo-40010: Optimize pending calls in multithreaded applications (GH-19091)Victor Stinner2020-03-203-6/+22
* bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087)Victor Stinner2020-03-205-53/+49
* bpo-40010: Pass tstate to ceval GIL functions (GH-19077)Victor Stinner2020-03-202-138/+199
* bpo-1635741: Port _weakref extension module to multiphase initialization (PEP...Hai Shi2020-03-202-21/+38
* bpo-39797 Changes to socketserver.BaseServer's shutdown() method. (GH-18929)amaajemyfren2020-03-201-0/+2
* bpo-40019: Skip test_gdb if Python was optimized (GH-19081)Victor Stinner2020-03-203-7/+20
* bpo-39877: 4th take_gil() fix for daemon threads (GH-19080)Victor Stinner2020-03-191-22/+23
* Fix "versionchanged" for pow named arguments (GH-19042)Mark Dickinson2020-03-191-1/+1
* bpo-39824: Convert PyModule_GetState() to get_module_state() (GH-19076)Hai Shi2020-03-192-8/+8
* bpo-40010: Optimize signal handling in multithreaded applications (GH-19067)Victor Stinner2020-03-194-4/+41
* bpo-1635741: Port _collections module to multiphase initialization (GH-19074)Dong-hee Na2020-03-192-42/+43
* bpo-39562: Allow executing asynchronous comprehensions in the asyncio REPL (G...Batuhan Taşkaya2020-03-193-3/+15
* bpo-40000: Improve error messages when validating invalid ast.Constant nodes ...Batuhan Taşkaya2020-03-193-3/+16
* bpo-39984: Move pending calls to PyInterpreterState (GH-19066)Victor Stinner2020-03-198-82/+127
* Remove unused variable to fix compiler warning in _threadmodule.c (GH-19064)Pablo Galindo2020-03-181-2/+0
* bpo-39220: Do not optimise annotation if 'from __future__ import annotations'...Pablo Galindo2020-03-185-40/+67
* bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061)Victor Stinner2020-03-183-13/+19
* bpo-37207: Use PEP 590 vectorcall to speed up frozenset() (GH-19053)Dong-hee Na2020-03-182-18/+52
* bpo-27807: Skip test_site.test_startup_imports() if pth file (GH-19060)Victor Stinner2020-03-182-4/+25
* bpo-1635741: Port _heapq module to multiphase initialization (GH19057)Dong-hee Na2020-03-182-12/+20
* bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049)Victor Stinner2020-03-185-26/+30
* bpo-39957: Change Signature.parameters to OrderedDict (GH-18988)Jens Reidel2020-03-182-5/+10
* bpo-39877: Fix take_gil() for daemon threads (GH-19054)Victor Stinner2020-03-181-2/+6
* bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051)Victor Stinner2020-03-186-32/+47
* bpo-39984: Pass tstate to handle_signals() (GH-19050)Victor Stinner2020-03-181-11/+15
* bpo-38373: Change list overallocating strategy. (GH-18952)Serhiy Storchaka2020-03-172-6/+10
* bpo-39719: Remove softspace from tempfile.SpooledTemporaryFile (GH-18599)Shantanu2020-03-172-4/+1
* bpo-39988: Remove ast.AugLoad and ast.AugStore node classes. (GH-19038)Serhiy Storchaka2020-03-177-179/+53
* bpo-39984: Add PyInterpreterState.ceval (GH-19047)Victor Stinner2020-03-175-19/+35
* bpo-1635741: Port itertools module to multiphase initialization (GH-19044)Dong-hee Na2020-03-172-35/+43
* bpo-39991: Enhance uuid parser for MAC address (GH-19045)Victor Stinner2020-03-172-31/+93
* bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738)Victor Stinner2020-03-1710-144/+91
* bpo-26067: Do not fail test_shutil / chown when gid/uid cannot be resolved (#...Matthias Braun2020-03-172-6/+12
* bpo-39943: Remove unused self from find_nfc_index() (GH-18973)Andy Lester2020-03-171-4/+4
* bpo-39987: Simplify setting lineno in the compiler. (GH-19037)Serhiy Storchaka2020-03-174-4006/+3970
* bpo-39991: uuid._netstat_getnode() ignores IPv6 addresses (GH-19043)Victor Stinner2020-03-173-10/+51
* bpo-39973: Fix the docs for PyObject_GenericSetDict() (GH-19026)Zackery Spytz2020-03-172-2/+3
* bpo-39656: Ensure `bin/python3.#` is always present in virtual environments o...Anthony Sottile2020-03-172-1/+3
* bpo-1635741: Port _ctypes_test extension to multiphase initialization (PEP 4...Hai Shi2020-03-171-3/+6
* bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019)Dong-hee Na2020-03-162-0/+25