index
:
cpython
3.10
3.11
3.12
3.13
3.14
3.9
main
The Python programming language
Aslak Raanes
about
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
Python
/
pylifecycle.c
Commit message (
Expand
)
Author
Age
*
bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)
Victor Stinner
2021-09-21
*
bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...
Eric Snow
2021-09-14
*
bpo-44895: Introduce PYTHONDUMPREFSFILE variable for refcount dumping (GH-27767)
Dong-hee Na
2021-08-18
*
bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065)
Victor Stinner
2021-08-06
*
bpo-32280: Store _PyRuntime in a named section (GH-4802)
Max Bélanger
2021-06-04
*
bpo-43680: _pyio.open() becomes a static method (GH-25354)
Victor Stinner
2021-04-12
*
bpo-42923: Fix _Py_DumpExtensionModules() for NULL sysdict (GH-25262)
Victor Stinner
2021-04-07
*
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Victor Stinner
2021-04-02
*
bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)
Victor Stinner
2021-03-23
*
bpo-43311: Create GIL autoTSSkey ealier (GH-24819)
Victor Stinner
2021-03-10
*
bpo-43390: Set SA_ONSTACK in PyOS_setsig (GH-24730)
Gregory P. Smith
2021-03-04
*
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner
2021-02-19
*
bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577)
Victor Stinner
2021-02-19
*
bpo-42955: Rename module_names to sys.stdlib_module_names (GH-24332)
Victor Stinner
2021-01-25
*
bpo-42955: Add sys.modules_names (GH-24238)
Victor Stinner
2021-01-25
*
bpo-42923: _Py_DumpExtensionModules() ignores stdlib ext (GH-24254)
Victor Stinner
2021-01-19
*
bpo-42923: Dump extension modules on fatal error (GH-24207)
Victor Stinner
2021-01-18
*
bpo-42923: Py_FatalError() avoids fprintf() (GH-24242)
Victor Stinner
2021-01-18
*
bpo-42745: finalize_interp_types() calls _PyType_Fini() (GH-23953)
Victor Stinner
2020-12-26
*
bpo-40521: Per-interpreter interned strings (GH-20085)
Victor Stinner
2020-12-26
*
bpo-42745: Make the type cache per-interpreter (GH-23947)
Victor Stinner
2020-12-26
*
bpo-42639: Move atexit state to PyInterpreterState (GH-23763)
Victor Stinner
2020-12-15
*
bpo-42639: atexit now logs callbacks exceptions (GH-23771)
Victor Stinner
2020-12-14
*
bpo-42639: Cleanup atexitmodule.c (GH-23770)
Victor Stinner
2020-12-14
*
bpo-32381: Add _PyRun_AnyFileObject() (GH-23723)
Victor Stinner
2020-12-09
*
bpo-42599: Remove useless PyModule_GetWarningsModule() (GH-23691)
Hai Shi
2020-12-08
*
bpo-1635741: Convert _imp to multi-phase init (GH-23378)
Victor Stinner
2020-11-18
*
bpo-40998: Address compiler warnings found by ubsan (GH-20929)
Christian Heimes
2020-11-18
*
bpo-41686: Move _Py_RestoreSignals() to signalmodule.c (GH-23353)
Victor Stinner
2020-11-17
*
bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342)
Victor Stinner
2020-11-17
*
bpo-37205: time.time() cannot fail with fatal error (GH-23314)
Victor Stinner
2020-11-16
*
bpo-42260: Initialize time and warnings earlier at startup (GH-23249)
Victor Stinner
2020-11-12
*
bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220)
Victor Stinner
2020-11-10
*
bpo-42260: Compute the path config in the main init (GH-23211)
Victor Stinner
2020-11-10
*
bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158)
Victor Stinner
2020-11-05
*
bpo-42260: Main init modify sys.flags in-place (GH-23150)
Victor Stinner
2020-11-04
*
bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131)
Victor Stinner
2020-11-03
*
bpo-42208: Call GC collect earlier in PyInterpreterState_Clear() (GH-23044)
Victor Stinner
2020-10-30
*
bpo-42208: Move _PyImport_Cleanup() to pylifecycle.c (GH-23040)
Victor Stinner
2020-10-30
*
bpo-42208: Pass tstate to _PyGC_CollectNoFail() (GH-23038)
Victor Stinner
2020-10-30
*
bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte...
Serhiy Storchaka
2020-10-26
*
bpo-41631: _ast module uses again a global state (#21961)
Victor Stinner
2020-09-15
*
bpo-1635741: Explict GC collect after PyInterpreterState_Clear() (GH-21902)
Hai Shi
2020-08-17
*
bpo-41162: Clear audit hooks later during finalization (GH-21222)
Konge
2020-07-03
*
bpo-1635741: Release Unicode interned strings at exit (GH-21269)
Victor Stinner
2020-07-02
*
bpo-40521: Cleanup finalize_interp_types() (GH-21265)
Victor Stinner
2020-07-01
*
bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142)
Victor Stinner
2020-06-25
*
bpo-40521: Always create the empty tuple singleton (GH-21116)
Victor Stinner
2020-06-24
*
bpo-40521: Make empty Unicode string per interpreter (GH-21096)
Victor Stinner
2020-06-24
*
bpo-40521: Make MemoryError free list per interpreter (GH-21086)
Victor Stinner
2020-06-23
[next]