summaryrefslogtreecommitdiffstats
path: root/Include/internal
Commit message (Expand)AuthorAgeFilesLines
* bpo-36724: Add _PyWarnings_Fini() (#12963)Victor Stinner2019-04-261-0/+1
* bpo-36710: Add runtime parameter in gcmodule.c (GH-12958)Victor Stinner2019-04-261-1/+1
* bpo-36710: Add runtime variable to Py_InitializeEx() (GH-12939)Victor Stinner2019-04-242-3/+12
* bpo-36710: Add runtime variable to Py_FinalizeEx() (GH-12937)Victor Stinner2019-04-241-2/+4
* bpo-36710: PyOS_AfterFork_Child() pass runtime parameter (GH-12936)Victor Stinner2019-04-241-5/+7
* bpo-36710: Add runtime parameter to _PyThreadState_Init() (GH-12935)Victor Stinner2019-04-241-0/+5
* bpo-33608: Normalize atomic macros so that they all expect an atomic struct (...Steve Dower2019-04-221-24/+36
* bpo-36635: Add _testinternalcapi module (GH-12841)Victor Stinner2019-04-181-0/+5
* bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853)Victor Stinner2019-04-1717-34/+34
* bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803)Victor Stinner2019-04-121-0/+4
* bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()...Eric Snow2019-04-122-16/+5
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12...Eric Snow2019-04-122-5/+16
* bpo-36389: Change PyMem_SetupDebugHooks() constants (GH-12782)Victor Stinner2019-04-111-10/+9
* bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (GH-12770)Victor Stinner2019-04-111-0/+25
* bpo-36444: Rework _Py_InitializeFromConfig() API (GH-12576)Victor Stinner2019-03-272-37/+43
* bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)Victor Stinner2019-03-272-6/+0
* bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)Victor Stinner2019-03-261-28/+16
* bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-262-2/+7
* bpo-36301: Add _Py_GetEnv() function (GH-12542)Victor Stinner2019-03-251-11/+5
* bpo-36301: Add _Py_GetConfigsAsDict() function (GH-12540)Victor Stinner2019-03-251-2/+6
* bpo-36301: Add _Py_PreInitializeFromConfig() (GH-12536)Victor Stinner2019-03-251-1/+13
* bpo-36301: Cleanup preconfig code (GH-12535)Victor Stinner2019-03-251-8/+7
* bpo-36301: Add _PyRuntimeState.preconfig (GH-12506)Victor Stinner2019-03-231-0/+2
* bpo-36301: Add _PyPreCmdline internal API (GH-12458)Victor Stinner2019-03-201-0/+24
* bpo-36301: Add _PyRuntime.pre_initialized (GH-12457)Victor Stinner2019-03-201-2/+10
* bpo-36236: Handle removed cwd at Python init (GH-12424)Victor Stinner2019-03-191-1/+3
* bpo-36356: pymain_free() calls _PyRuntime_Finalize() (GH-12435)Victor Stinner2019-03-191-0/+2
* bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422)Victor Stinner2019-03-191-1/+2
* bpo-36124: Add PyInterpreterState.dict. (gh-12132)Eric Snow2019-03-151-0/+2
* bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...Eric Snow2019-03-151-54/+1
* bpo-33608: Deal with pending calls relative to runtime shutdown. (gh-12246)Eric Snow2019-03-151-0/+3
* bpo-36301: Add _PyWstrList structure (GH-12343)Victor Stinner2019-03-153-23/+22
* bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)Eric Snow2019-03-091-0/+1
* bpo-33608: Minor cleanup related to pending calls. (gh-12247)Eric Snow2019-03-092-1/+4
* Fix the Py_atomic_* macros. (#12240)Eric Snow2019-03-081-24/+24
* bpo-36142: _PyPreConfig_Read() sets LC_CTYPE (GH-12188)Victor Stinner2019-03-061-1/+0
* bpo-36142: Add _PyPreConfig_SetAllocator() (GH-12187)Victor Stinner2019-03-062-3/+1
* bpo-36142: _PyPreConfig_Write() sets the allocator (GH-12186)Victor Stinner2019-03-051-1/+1
* bpo-36142: Add _PyMem_GetDebugAllocatorsName() (GH-12185)Victor Stinner2019-03-051-0/+2
* bpo-36142: Add _PyPreConfig.utf8_mode (GH-12174)Victor Stinner2019-03-051-0/+13
* bpo-36142: Add _PyPreConfig_ReadFromArgv() (GH-12173)Victor Stinner2019-03-052-5/+8
* bpo-36142: Add _PyPreConfig structure (GH-12172)Victor Stinner2019-03-051-0/+13
* Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...Victor Stinner2019-03-043-45/+83
* bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...Eric Snow2019-03-011-54/+1
* bpo-33608: Simplify ceval's DISPATCH by hoisting eval_breaker ahead of time. ...Eric Snow2019-03-011-24/+24
* bpo-36142: Add preconfig.c (GH-12128)Victor Stinner2019-03-012-3/+10
* bpo-36142: Move command line parsing to coreconfig.c (GH-12123)Victor Stinner2019-03-012-14/+26
* bpo-36142: Exclude coreconfig.h from Py_LIMITED_API (GH-12111)Victor Stinner2019-03-011-0/+33
* bpo-36030: Add _PyTuple_FromArray() function (GH-11954)Sergey Fedoseev2019-02-251-0/+1
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...Eric Snow2019-02-242-5/+20