summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878)Inada Naoki2020-06-171-0/+4
* bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20...Lysandros Nikolaou2020-06-161-4/+8
* bpo-36020: Require vsnprintf() to build Python (GH-20899)Victor Stinner2020-06-151-37/+5
* bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889)Victor Stinner2020-06-151-10/+17
* bpo-40910: PyConfig_Clear() clears _orig_argv (GH-20886)Victor Stinner2020-06-151-0/+2
* bpo-29782: Consolidate _Py_Bit_Length() (GH-20739)Niklas Fiekas2020-06-151-15/+0
* bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827)Christian Heimes2020-06-131-0/+1
* bpo-40834: Fix truncate when sending str object with channel (GH-20555)An Long2020-06-131-1/+1
* Remove redundant var in PyErr_NewException() (GH-20850)Hai Shi2020-06-131-2/+0
* bpo-40939: Remove the old parser (GH-20768)Pablo Galindo2020-06-115-5788/+6
* bpo-40925: Remove unused stack macro SET_VALUE (GH-20783)Dong-hee Na2020-06-111-1/+0
* bpo-39465: Use _PyInterpreterState_GET() (GH-20788)Victor Stinner2020-06-102-8/+8
* _PyPreConfig_Read() decodes argv at each iteration (GH-20786)Victor Stinner2020-06-101-9/+11
* bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781)Victor Stinner2020-06-102-12/+7
* bpo-40910: Export Py_GetArgcArgv() function (GH-20721)Victor Stinner2020-06-083-18/+28
* bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-2...Sandro Mani2020-06-082-7/+27
* bpo-29882: Add _Py_popcount32() function (GH-20518)Victor Stinner2020-06-081-22/+3
* bpo-39791 native hooks for importlib.resources.files (GH-20576)Jason R. Coombs2020-06-082-2168/+2005
* bpo-40887: Don't use finalized free lists (GH-20700)Victor Stinner2020-06-081-0/+12
* bpo-40887: Fix finalize_interp_clear() for free lists (GH-20698)Victor Stinner2020-06-071-27/+17
* bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649)Batuhan Taskaya2020-06-061-0/+22
* bpo-40521: Make context free list per-interpreter (GH-20644)Victor Stinner2020-06-052-20/+20
* bpo-40521: Make async gen free lists per-interpreter (GH-20643)Victor Stinner2020-06-051-1/+5
* bpo-40521: Make list free list per-interpreter (GH-20642)Victor Stinner2020-06-051-3/+3
* bpo-40521: Make frame free list per-interpreter (GH-20638)Victor Stinner2020-06-041-4/+1
* bpo-40521: Make slice cache per-interpreter (GH-20637)Victor Stinner2020-06-041-1/+1
* bpo-40521: Make float free list per-interpreter (GH-20636)Victor Stinner2020-06-041-1/+1
* bpo-40521: Make tuple free list per-interpreter (GH-20247)Victor Stinner2020-06-041-1/+3
* bpo-40679: Fix _PyEval_EvalCode() crash if qualname is NULL (GH-20615)Victor Stinner2020-06-041-22/+36
* bpo-40471: Fix grammar typo in 'issubclass' docstring (GH-19847)Alex Povel2020-06-032-6/+6
* PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598)Victor Stinner2020-06-021-3/+2
* 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-023-35/+36
* Fix MSVC warnings in pythonrun.c (#GH-0587)Ammar Askar2020-06-021-8/+8
* bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571)Victor Stinner2020-06-014-29/+18
* Make sure that keyword arguments are merged into the arguments dictionary whe...Mark Shannon2020-06-011-0/+3
* bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435)Mark Dickinson2020-05-291-0/+11
* bpo-40792: Make the result of PyNumber_Index() always having exact type int. ...Serhiy Storchaka2020-05-282-3/+3
* bpo-40614: Respect feature version for f-string debug expressions (GH-20196)Shantanu2020-05-271-0/+6
* bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSp...Pablo Galindo2020-05-271-0/+1
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-267-140/+18
* bpo-36290: Fix keytword collision handling in AST node constructors (GH-12382)RĂ©mi Lapeyre2020-05-241-3/+24
* bpo-40679: Use the function's qualname in certain TypeErrors (GH-20236)Dennis Sweeney2020-05-221-15/+16
* bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)Chris Jerdonek2020-05-221-9/+53
* bpo-40663: Correctly handle annotations with subscripts in ast_unparse.c (GH-...Batuhan Taskaya2020-05-181-1/+12
* bpo-35890: Use RegQueryInfoKeyW and CryptAcquireContextW explicitly (GH-19974)Minmin Gong2020-05-181-2/+2
* bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20...Minmin Gong2020-05-181-1/+1
* bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)Chris Jerdonek2020-05-181-0/+14
* bpo-40636: Clarify the zip built-in docstring. (GH-20118)Gregory P. Smith2020-05-151-5/+8
* Fix typo in code comment in main_loop label. (GH-20068)Chris Jerdonek2020-05-151-1/+1