summaryrefslogtreecommitdiffstats
path: root/Include/internal
Commit message (Expand)AuthorAgeFilesLines
* Move comment about permanent generation to gcmodule.c (GH-17718)Pablo Galindo2019-12-271-36/+0
* bpo-38858: Small integer per interpreter (GH-17315)Victor Stinner2019-12-172-2/+14
* bpo-38858: new_interpreter() reuses _PySys_Create() (GH-17481)Victor Stinner2019-12-061-1/+0
* bpo-38858: new_interpreter() reuses pycore_init_builtins() (GH-17351)Victor Stinner2019-11-221-1/+0
* bpo-38858: _PyImport_FixupExtensionObject() handles subinterpreters (GH-17350)Victor Stinner2019-11-221-0/+6
* bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330)Victor Stinner2019-11-221-1/+1
* bpo-38858: Add _Py_IsMainInterpreter(tstate) (GH-17293)Victor Stinner2019-11-201-0/+2
* 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-203-6/+5
* bpo-36854: gcmodule.c gets its state from tstate (GH-17285)Victor Stinner2019-11-202-5/+7
* bpo-38858: Factorize Py_EndInterpreter() code (GH-17273)Victor Stinner2019-11-201-2/+2
* bpo-36710: Add PyInterpreterState.runtime field (GH-17270)Victor Stinner2019-11-202-9/+8
* bpo-38631: Avoid Py_FatalError() in handle_legacy_finalizers() (GH-17266)Victor Stinner2019-11-202-1/+2
* bpo-38644: Add _PyEval_EvalCode() (GH-17183)Victor Stinner2019-11-161-0/+10
* bpo-38644: Add _PyObject_Call() (GH-17089)Victor Stinner2019-11-141-0/+39
* bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131)Victor Stinner2019-11-141-0/+9
* bpo-38733: PyErr_Occurred() caller must hold the GIL (GH-17080)Victor Stinner2019-11-071-1/+2
* bpo-36876: Moved Parser/listnode.c statics to interpreter state. (GH-16328)Vinay Sajip2019-11-071-0/+9
* bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050)Victor Stinner2019-11-051-0/+6
* bpo-38392: Only declare visit_validate() if Py_DEBUG is defined (GH-16689)Victor Stinner2019-10-101-1/+1
* bpo-36389: Fix _PyBytesWriter in release mode (GH-16624)Victor Stinner2019-10-071-0/+15
* bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612)Victor Stinner2019-10-072-5/+7
* bpo-38353: getpath.c: allocates strings on the heap (GH-16585)Victor Stinner2019-10-041-3/+2
* bpo-38353: Fix compiler warning in internal headers (GH-16573)Victor Stinner2019-10-043-16/+16
* bpo-38353: Fix compiler warning in pycore_initconfig.h (GH-16570)Victor Stinner2019-10-031-2/+2
* bpo-38353: Cleanup includes in the internal C API (GH-16548)Victor Stinner2019-10-0212-29/+21
* bpo-38304: PyConfig_InitPythonConfig() cannot fail anymore (GH-16509)Victor Stinner2019-10-011-1/+1
* bpo-38304: Remove PyConfig.struct_size (GH-16500) (GH-16508)Victor Stinner2019-10-011-2/+2
* bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)Victor Stinner2019-09-292-2/+2
* bpo-38304: Add PyConfig.struct_size (GH-16451)Victor Stinner2019-09-281-6/+6
* bpo-38234: Py_Initialize() sets global path configuration (GH-16421)Victor Stinner2019-09-261-1/+1
* bpo-38234: Add test_init_setpath_config() to test_embed (GH-16402)Victor Stinner2019-09-261-4/+11
* bpo-38236: Dump path config at first import error (GH-16300)Victor Stinner2019-09-231-0/+1
* bpo-38234: Remove _PyPathConfig.dll_path (GH-16307)Victor Stinner2019-09-202-6/+6
* Fix _PyTraceMalloc_Fini() definition (GH-16259)Victor Stinner2019-09-181-1/+1
* bpo-38070: Add _PyRuntimeState.preinitializing (GH-16245)Victor Stinner2019-09-171-3/+8
* bpo-37878: Remove PyThreadState_DeleteCurrent() function (GH-15315)Joannah Nanjekye2019-09-051-0/+2
* bpo-36763: Make Py_BytesMain() public (GH-15532)Victor Stinner2019-08-261-2/+0
* Make PyXXX_Fini() functions private (GH-15531)Victor Stinner2019-08-261-12/+13
* bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431)Victor Stinner2019-08-231-0/+2
* bpo-37369: Fix initialization of sys members when launched via an app contain...Steve Dower2019-06-291-0/+2
* bpo-37392: Remove sys.setcheckinterval() (GH-14355)Victor Stinner2019-06-251-3/+0
* bpo-36710: Use tstate in pylifecycle.c (GH-14249)Victor Stinner2019-06-192-7/+6
* bpo-36710: Remove PyImport_Cleanup() function (GH-14221)Victor Stinner2019-06-191-0/+1
* bpo-36710: Add tstate parameter in import.c (GH-14218)Victor Stinner2019-06-193-1/+9
* bpo-35134: Add Include/cpython/import.h header file (GH-14213)Victor Stinner2019-06-181-0/+14
* bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060)Victor Stinner2019-06-133-1/+6
* Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)Victor Stinner2019-06-043-12/+17
* Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-06-032-18/+7
* bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)Inada Naoki2019-06-032-0/+30