index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Include
/
internal
/
pycore_pylifecycle.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Victor Stinner
2021-04-02
1
-2/+5
*
bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)
Antoine Pitrou
2021-03-11
1
-0/+16
*
bpo-43311: Create GIL autoTSSkey ealier (GH-24819)
Victor Stinner
2021-03-10
1
-1/+4
*
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner
2021-02-19
1
-25/+25
*
bpo-42745: Make the type cache per-interpreter (GH-23947)
Victor Stinner
2020-12-26
1
-1/+1
*
bpo-42639: Move atexit state to PyInterpreterState (GH-23763)
Victor Stinner
2020-12-15
1
-1/+3
*
bpo-42639: atexit now logs callbacks exceptions (GH-23771)
Victor Stinner
2020-12-14
1
-0/+2
*
bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342)
Victor Stinner
2020-11-17
1
-1/+2
*
bpo-42260: Initialize time and warnings earlier at startup (GH-23249)
Victor Stinner
2020-11-12
1
-1/+0
*
bpo-42260: Main init modify sys.flags in-place (GH-23150)
Victor Stinner
2020-11-04
1
-1/+1
*
bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131)
Victor Stinner
2020-11-03
1
-1/+1
*
bpo-41631: _ast module uses again a global state (#21961)
Victor Stinner
2020-09-15
1
-0/+1
*
bpo-1635741: Release Unicode interned strings at exit (GH-21269)
Victor Stinner
2020-07-01
1
-0/+1
*
bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142)
Victor Stinner
2020-06-25
1
-0/+1
*
bpo-40521: Always create the empty tuple singleton (GH-21116)
Victor Stinner
2020-06-24
1
-0/+1
*
bpo-40521: Make empty Unicode string per interpreter (GH-21096)
Victor Stinner
2020-06-23
1
-1/+1
*
bpo-40521: Make MemoryError free list per interpreter (GH-21086)
Victor Stinner
2020-06-23
1
-2/+2
*
bpo-40521: Empty frozenset is no longer a singleton (GH-21085)
Raymond Hettinger
2020-06-23
1
-1/+0
*
bpo-40521: Make bytes singletons per interpreter (GH-21074)
Victor Stinner
2020-06-23
1
-1/+1
*
bpo-40521: Make the empty frozenset per interpreter (GH-21068)
Victor Stinner
2020-06-23
1
-1/+1
*
bpo-40521: Make dict free lists per-interpreter (GH-20645)
Victor Stinner
2020-06-23
1
-1/+1
*
bpo-40521: Make async gen free lists per-interpreter (GH-20643)
Victor Stinner
2020-06-05
1
-1/+1
*
bpo-40521: Make list free list per-interpreter (GH-20642)
Victor Stinner
2020-06-05
1
-1/+1
*
bpo-40521: Make frame free list per-interpreter (GH-20638)
Victor Stinner
2020-06-04
1
-1/+1
*
bpo-40521: Make slice cache per-interpreter (GH-20637)
Victor Stinner
2020-06-04
1
-1/+1
*
bpo-40521: Make float free list per-interpreter (GH-20636)
Victor Stinner
2020-06-04
1
-1/+1
*
bpo-40521: Make tuple free list per-interpreter (GH-20247)
Victor Stinner
2020-06-04
1
-1/+1
*
bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051)
Victor Stinner
2020-03-18
1
-1/+1
*
bpo-38631: _PyGILState_Init() returns PyStatus (GH-18908)
Victor Stinner
2020-03-10
1
-1/+1
*
bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263)
Victor Stinner
2020-01-30
1
-0/+1
*
bpo-38858: Small integer per interpreter (GH-17315)
Victor Stinner
2019-12-17
1
-2/+2
*
bpo-38858: new_interpreter() reuses _PySys_Create() (GH-17481)
Victor Stinner
2019-12-06
1
-1/+0
*
bpo-38858: new_interpreter() reuses pycore_init_builtins() (GH-17351)
Victor Stinner
2019-11-22
1
-1/+0
*
bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330)
Victor Stinner
2019-11-22
1
-1/+1
*
bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (G...
Victor Stinner
2019-11-20
1
-2/+0
*
bpo-36854: gcmodule.c gets its state from tstate (GH-17285)
Victor Stinner
2019-11-20
1
-1/+1
*
bpo-38858: Factorize Py_EndInterpreter() code (GH-17273)
Victor Stinner
2019-11-20
1
-2/+2
*
bpo-36710: Add PyInterpreterState.runtime field (GH-17270)
Victor Stinner
2019-11-20
1
-8/+3
*
bpo-38631: Avoid Py_FatalError() in handle_legacy_finalizers() (GH-17266)
Victor Stinner
2019-11-20
1
-0/+1
*
bpo-38353: Fix compiler warning in internal headers (GH-16573)
Victor Stinner
2019-10-04
1
-11/+11
*
bpo-38353: Cleanup includes in the internal C API (GH-16548)
Victor Stinner
2019-10-02
1
-2/+3
*
bpo-38317: Fix PyConfig.warnoptions priority (GH-16478)
Victor Stinner
2019-09-29
1
-1/+1
*
Fix _PyTraceMalloc_Fini() definition (GH-16259)
Victor Stinner
2019-09-18
1
-1/+1
*
bpo-37878: Remove PyThreadState_DeleteCurrent() function (GH-15315)
Joannah Nanjekye
2019-09-05
1
-0/+2
*
bpo-36763: Make Py_BytesMain() public (GH-15532)
Victor Stinner
2019-08-26
1
-2/+0
*
Make PyXXX_Fini() functions private (GH-15531)
Victor Stinner
2019-08-26
1
-12/+13
*
bpo-36763: PyConfig_Read() handles PySys_AddXOption() (GH-15431)
Victor Stinner
2019-08-23
1
-0/+2
*
bpo-36710: Use tstate in pylifecycle.c (GH-14249)
Victor Stinner
2019-06-19
1
-6/+5
*
bpo-36710: Add tstate parameter in import.c (GH-14218)
Victor Stinner
2019-06-19
1
-1/+1
*
bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060)
Victor Stinner
2019-06-13
1
-1/+1
[next]