summaryrefslogtreecommitdiff
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-38858: Add _Py_IsMainInterpreter(tstate) (GH-17293)Victor Stinner2019-11-201-0/+6
* bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (G...Victor Stinner2019-11-201-2/+0
* bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287)Victor Stinner2019-11-202-2/+3
* bpo-38858: Fix reference leak in pycore_init_types() (GH-17286)Victor Stinner2019-11-201-20/+26
* bpo-36854: gcmodule.c gets its state from tstate (GH-17285)Victor Stinner2019-11-201-1/+1
* bpo-36854: Clear the current thread later (GH-17279)Victor Stinner2019-11-202-27/+35
* bpo-38858: Factorize Py_EndInterpreter() code (GH-17273)Victor Stinner2019-11-202-54/+78
* bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)Victor Stinner2019-11-202-6/+0
* bpo-36710: Add PyInterpreterState.runtime field (GH-17270)Victor Stinner2019-11-204-82/+70
* bpo-38823: Fix refleak in marshal init error path (GH-17260)Brandt Bucher2019-11-201-1/+4
* bpo-38631: Avoid Py_FatalError() in handle_legacy_finalizers() (GH-17266)Victor Stinner2019-11-202-5/+12
* bpo-38858: Reorganize pycore_init_types() (GH-17265)Victor Stinner2019-11-201-20/+11
* bpo-38644: Add _PyEval_EvalCode() (GH-17183)Victor Stinner2019-11-161-4/+24
* bpo-38644: Add _PyObject_Call() (GH-17089)Victor Stinner2019-11-143-15/+19
* bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131)Victor Stinner2019-11-141-5/+7
* bpo-38644: Add _PyObject_VectorcallTstate() (GH-17052)Victor Stinner2019-11-081-17/+31
* bpo-38733: PyErr_Occurred() caller must hold the GIL (GH-17080)Victor Stinner2019-11-071-0/+3
* bpo-37645: add new function _PyObject_FunctionStr() (GH-14890)Jeroen Demeyer2019-11-051-19/+30
* closes bpo-37633: Reëxport some function compatibility wrappers for macros i...Benjamin Peterson2019-11-041-16/+16
* bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050)Victor Stinner2019-11-052-1/+16
* bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997)Victor Stinner2019-11-051-7/+7
* bpo-38644: Add Py_EnterRecursiveCall() to the limited API (GH-17046)Victor Stinner2019-11-041-0/+18
* closes bpo-38648: Remove double tp_free slot in Python-ast.c. (GH-17002)Max Bernstein2019-10-301-1/+0
* bpo-38640: Allow break and continue in always false while loops (GH-16992)Pablo Galindo2019-10-301-0/+8
* bpo-38535: Fix positions for AST nodes for calls without arguments in decorat...Serhiy Storchaka2019-10-261-2/+4
* Fix typo in formatter_unicode (GH-16831)Hansraj Das2019-10-251-1/+1
* bpo-38540: Fix possible leak in PyArg_Parse for "es#" and "et#". (GH-16869)Serhiy Storchaka2019-10-211-2/+26
* Typo fix - implemention should be implementation (GH-16806)Hansraj Das2019-10-151-1/+1
* bpo-11410: Standardize and use symbol visibility attributes across POSIX and ...Vinay Sajip2019-10-153-15/+16
* bpo-38469: Handle named expression scope with global/nonlocal keywords (GH-16...Pablo Galindo2019-10-141-3/+9
* Correct signature of __build_class__ (GH-16735)Pablo Galindo2019-10-131-1/+1
* Typo fix: "throuhgh" should be "through". (GH-16704)Hansraj Das2019-10-101-1/+1
* bpo-38425: Fix ‘res’ may be used uninitialized warning (GH-16688)Dong-hee Na2019-10-101-1/+2
* Typo fix: "empy" should be "empty". (GH-16666)Hansraj Das2019-10-081-1/+1
* Fix typo in _warnings.warn_explicit() docstring (GH-16625)Hansraj Das2019-10-081-1/+1
* bpo-38353: getpath.c: allocates strings on the heap (GH-16585)Victor Stinner2019-10-041-9/+20
* bpo-38266: Revert bpo-37878: Make PyThreadState_DeleteCurrent() Internal (GH-...Joannah Nanjekye2019-10-041-2/+8
* bpo-38353: Add subfunctions to getpath.c (GH-16572)Victor Stinner2019-10-041-4/+6
* bpo-38353: Cleanup includes in the internal C API (GH-16548)Victor Stinner2019-10-021-0/+1
* bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509)Victor Stinner2019-10-015-54/+13
* bpo-38304: Remove PyConfig.struct_size (GH-16500) (GH-16508)Victor Stinner2019-10-016-114/+12
* bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)Victor Stinner2019-09-303-45/+85
* bpo-38310: Predict BUILD_MAP_UNPACK_WITH_CALL -> CALL_FUNCTION_EX. (GH-16467)Brandt Bucher2019-09-281-0/+2
* bpo-38304: Add PyConfig.struct_size (GH-16451)Victor Stinner2019-09-286-28/+175
* bpo-38234: Py_Initialize() sets global path configuration (GH-16421)Victor Stinner2019-09-262-9/+24
* bpo-38234: Add test_init_setpath_config() to test_embed (GH-16402)Victor Stinner2019-09-261-5/+28
* bpo-38234: Py_SetPath() uses the program full path (GH-16357)Victor Stinner2019-09-241-4/+7
* bpo-38234: Fix _PyConfig_InitPathConfig() (GH-16335)Victor Stinner2019-09-231-149/+166
* bpo-38236: Fix init_dump_ascii_wstr() (GH-16333)Victor Stinner2019-09-231-0/+1
* bpo-38236: Dump path config at first import error (GH-16300)Victor Stinner2019-09-231-2/+97