6762 Commits (768fa145cfec2a0599802b74fc31d2bc2812ed96)

Author SHA1 Message Date
Victor Stinner 30a89338eb
Call _PyWarnings_InitState() in subinterpreters (GH-21078) 6 years ago
Victor Stinner c41eed1a87
bpo-40521: Make bytes singletons per interpreter (GH-21074) 6 years ago
Victor Stinner 261cfedf76
bpo-40521: Make the empty frozenset per interpreter (GH-21068) 6 years ago
Victor Stinner b4e85cadfb
bpo-40521: Make dict free lists per-interpreter (GH-20645) 6 years ago
Victor Stinner c96d00e88e
bpo-41078: Fix bltinmodule.c with Py_TRACE_REFS (GH-21058) 6 years ago
Victor Stinner 384621c42f
bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) 6 years ago
Christian Heimes 4901ea9526
bpo-41061: Fix incorrect expressions in hashtable (GH-21028) 6 years ago
Gregory P. Smith 81328f3070
bpo-41056: Fix reference to deallocated stack in pathconfig (Coverity) (GH-21013) 6 years ago
Lysandros Nikolaou 564cd18767
bpo-40939: Rename PyPegen* functions to PyParser* (GH-21016) 6 years ago
Lysandros Nikolaou 314858e276
bpo-40939: Remove the old parser (Part 2) (GH-21005) 6 years ago
Guido van Rossum 310f6aa7db
bpo-40636: PEP 618: add strict parameter to zip() (GH-20921) 6 years ago
Victor Stinner 37bb289556
bpo-40943: PY_SSIZE_T_CLEAN required for '#' formats (GH-20784) 6 years ago
Victor Stinner 1bf7959dce
bpo-41006: Remove init_sys_streams() hack (GH-20954) 6 years ago
Inada Naoki 2c4928d37e
bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878) 6 years ago
Lysandros Nikolaou 113e2b0a07
bpo-40985: Show correct SyntaxError text when last line has a LINECONT (GH-20888) 6 years ago
Victor Stinner 7ab92d54b5
bpo-36020: Require vsnprintf() to build Python (GH-20899) 6 years ago
Victor Stinner e822e37946
bpo-36020: Remove snprintf macro in pyerrors.h (GH-20889) 6 years ago
Victor Stinner e2d47a0568
bpo-40910: PyConfig_Clear() clears _orig_argv (GH-20886) 6 years ago
Niklas Fiekas 794e7d1ab2
bpo-29782: Consolidate _Py_Bit_Length() (GH-20739) 6 years ago
Christian Heimes 9672912e8f
bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827) 6 years ago
An Long 29c117202e
bpo-40834: Fix truncate when sending str object with channel (GH-20555) 6 years ago
Hai Shi 1c209e3b53
Remove redundant var in PyErr_NewException() (GH-20850) 6 years ago
Pablo Galindo 1ed83adb0e
bpo-40939: Remove the old parser (GH-20768) 6 years ago
Dong-hee Na 33faf5c4f4
bpo-40925: Remove unused stack macro SET_VALUE (GH-20783) 6 years ago
Victor Stinner 1bcc32f062
bpo-39465: Use _PyInterpreterState_GET() (GH-20788) 6 years ago
Victor Stinner 8eb4aea262
_PyPreConfig_Read() decodes argv at each iteration (GH-20786) 6 years ago
Victor Stinner d36cf5f1d2
bpo-40943: Replace PY_FORMAT_SIZE_T with "z" (GH-20781) 6 years ago
Victor Stinner e81f6e687d
bpo-40910: Export Py_GetArgcArgv() function (GH-20721) 6 years ago
Sandro Mani 8f023a2f66
bpo-40854: Allow overriding sys.platlibdir via PYTHONPLATLIBDIR env-var (GH-20605) 6 years ago
Victor Stinner c6b292cdee
bpo-29882: Add _Py_popcount32() function (GH-20518) 6 years ago
Jason R. Coombs 843c277656
bpo-39791 native hooks for importlib.resources.files (GH-20576) 6 years ago
Victor Stinner bcb198385d
bpo-40887: Don't use finalized free lists (GH-20700) 6 years ago
Victor Stinner 7907f8cbc6
bpo-40887: Fix finalize_interp_clear() for free lists (GH-20698) 6 years ago
Batuhan Taskaya 68874a8502
bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649) 6 years ago
Victor Stinner e005ead49b
bpo-40521: Make context free list per-interpreter (GH-20644) 6 years ago
Victor Stinner 78a02c2568
bpo-40521: Make async gen free lists per-interpreter (GH-20643) 6 years ago
Victor Stinner 88ec919010
bpo-40521: Make list free list per-interpreter (GH-20642) 6 years ago
Victor Stinner 3744ed2c9c
bpo-40521: Make frame free list per-interpreter (GH-20638) 6 years ago
Victor Stinner 7daba6f221
bpo-40521: Make slice cache per-interpreter (GH-20637) 6 years ago
Victor Stinner 2ba59370c3
bpo-40521: Make float free list per-interpreter (GH-20636) 6 years ago
Victor Stinner 69ac6e58fd
bpo-40521: Make tuple free list per-interpreter (GH-20247) 6 years ago
Victor Stinner 232dda6cbc
bpo-40679: Fix _PyEval_EvalCode() crash if qualname is NULL (GH-20615) 6 years ago
Alex Povel df773f8c54
bpo-40471: Fix grammar typo in 'issubclass' docstring (GH-19847) 6 years ago
Victor Stinner 317bab0bf6
PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598) 6 years ago
Victor Stinner 45b34a04a5
bpo-40232: _PyImport_ReInitLock() can now safely use its lock (GH-20597) 6 years ago
Victor Stinner 26881c8fae
PyOS_AfterFork_Child() uses PyStatus (GH-20596) 6 years ago
Ammar Askar 90d297012b
Fix MSVC warnings in pythonrun.c (#GH-0587) 6 years ago
Victor Stinner 3026cad59b
bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571) 6 years ago
Mark Shannon db64f12e4d
Make sure that keyword arguments are merged into the arguments dictionary when dict unpacking and keyword arguments are interleaved. (GH-20553) 6 years ago
Mark Dickinson 895c9c1d43
bpo-40780: Fix failure of _Py_dg_dtoa to remove trailing zeros (GH-20435) 6 years ago