summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* bpo-36710: PyOS_AfterFork_Child() pass runtime parameter (GH-12936)Victor Stinner2019-04-242-6/+7
* bpo-36710: Add runtime parameter to _PyThreadState_Init() (GH-12935)Victor Stinner2019-04-242-2/+5
* fix warnings by adding more const (GH-12924)Inada Naoki2019-04-231-1/+1
* use `const` in graminit.c (GH-12713)tyomitch2019-04-231-5/+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-182-5/+5
* bpo-36071 Add support for Windows ARM32 in ctypes/libffi (GH-12059)Paul Monson2019-04-182-2/+2
* bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853)Victor Stinner2019-04-1718-36/+57
* bpo-36641: Add "const" to PyDoc_VAR macro (GH-12854)Inada Naoki2019-04-161-1/+1
* bpo-35134: Add Include/cpython/pymem.h (GH-12840)Victor Stinner2019-04-152-95/+106
* bpo-36623: Clean parser headers and include files (GH-12253)Pablo Galindo2019-04-133-68/+0
* bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803)Victor Stinner2019-04-122-0/+19
* bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()...Eric Snow2019-04-123-17/+6
* bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12...Eric Snow2019-04-123-6/+17
* 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-112-2/+25
* bpo-36527: silence -Wunused-parameter warnings in object.h (GH-12688)Dmitry Marakasov2019-04-061-0/+3
* bpo-36471: Add _Py_RunMain() (GH-12618)Victor Stinner2019-03-291-0/+3
* bpo-36443: Disable C locale coercion and UTF-8 Mode by default (GH-12589)Victor Stinner2019-03-271-7/+20
* bpo-36444: Rework _Py_InitializeFromConfig() API (GH-12576)Victor Stinner2019-03-274-56/+62
* bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)Eddie Elizondo2019-03-271-0/+3
* bpo-36444: Add _PyCoreConfig._init_main (GH-12572)Victor Stinner2019-03-272-5/+7
* bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)Victor Stinner2019-03-274-39/+1
* bpo-36301: Cleanup preconfig.c and coreconfig.c (GH-12563)Victor Stinner2019-03-262-30/+18
* Post v3.8.0a3Łukasz Langa2019-03-261-1/+1
* Merge tag 'v3.8.0a3'Łukasz Langa2019-03-261-2/+2
|\
| * v3.8.0a3v3.8.0a3Łukasz Langa2019-03-251-2/+2
* | bpo-36301: Remove _PyCoreConfig.preconfig (GH-12546)Victor Stinner2019-03-264-5/+14
* | 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-253-7/+7
|/
* bpo-36301: Add _Py_PreInitializeFromConfig() (GH-12536)Victor Stinner2019-03-253-2/+18
* bpo-36301: Cleanup preconfig code (GH-12535)Victor Stinner2019-03-252-9/+13
* 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-202-2/+14
* 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-36356: Release Unicode interned strings on Valgrind (#12431)Victor Stinner2019-03-191-2/+0
* bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422)Victor Stinner2019-03-191-1/+2
* bpo-36352: Clarify fileutils.h documentation (GH-12406)Victor Stinner2019-03-181-3/+9
* Fix typo in _PyObject_FastCallDict documentation (GH-12383)Rémi Lapeyre2019-03-181-1/+1
* bpo-36297: remove "unicode_internal" codec (GH-12342)Inada Naoki2019-03-181-9/+0
* bpo-36124: Add PyInterpreterState.dict. (gh-12132)Eric Snow2019-03-152-2/+10
* bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...Eric Snow2019-03-154-54/+102
* 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-154-41/+46
* bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...Serhiy Storchaka2019-03-141-0/+12
* bpo-36280: Add Constant.kind field (GH-12295)Guido van Rossum2019-03-131-3/+4
* Remove d_initial from the parser as it is unused (GH-12212)tyomitch2019-03-091-1/+0
* bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)Eric Snow2019-03-091-0/+1