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
/
Python
/
pylifecycle.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-42745: finalize_interp_types() calls _PyType_Fini() (GH-23953)
Victor Stinner
2020-12-26
1
-3/+1
*
bpo-40521: Per-interpreter interned strings (GH-20085)
Victor Stinner
2020-12-26
1
-0/+2
*
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
-12/+8
*
bpo-42639: atexit now logs callbacks exceptions (GH-23771)
Victor Stinner
2020-12-14
1
-6/+3
*
bpo-42639: Cleanup atexitmodule.c (GH-23770)
Victor Stinner
2020-12-14
1
-14/+2
*
bpo-32381: Add _PyRun_AnyFileObject() (GH-23723)
Victor Stinner
2020-12-09
1
-0/+15
*
bpo-42599: Remove useless PyModule_GetWarningsModule() (GH-23691)
Hai Shi
2020-12-08
1
-8/+0
*
bpo-1635741: Convert _imp to multi-phase init (GH-23378)
Victor Stinner
2020-11-18
1
-8/+10
*
bpo-40998: Address compiler warnings found by ubsan (GH-20929)
Christian Heimes
2020-11-18
1
-4/+3
*
bpo-41686: Move _Py_RestoreSignals() to signalmodule.c (GH-23353)
Victor Stinner
2020-11-17
1
-23/+0
*
bpo-41713: Remove PyOS_InitInterrupts() function (GH-23342)
Victor Stinner
2020-11-17
1
-26/+3
*
bpo-37205: time.time() cannot fail with fatal error (GH-23314)
Victor Stinner
2020-11-16
1
-6/+0
*
bpo-42260: Initialize time and warnings earlier at startup (GH-23249)
Victor Stinner
2020-11-12
1
-70/+50
*
bpo-42260: Fix _PyConfig_Read() if compute_path_config=0 (GH-23220)
Victor Stinner
2020-11-10
1
-1/+1
*
bpo-42260: Compute the path config in the main init (GH-23211)
Victor Stinner
2020-11-10
1
-28/+31
*
bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158)
Victor Stinner
2020-11-04
1
-4/+66
*
bpo-42260: Main init modify sys.flags in-place (GH-23150)
Victor Stinner
2020-11-04
1
-27/+18
*
bpo-41796: Call _PyAST_Fini() earlier to fix a leak (GH-23131)
Victor Stinner
2020-11-03
1
-8/+0
*
bpo-42208: Call GC collect earlier in PyInterpreterState_Clear() (GH-23044)
Victor Stinner
2020-10-30
1
-6/+1
*
bpo-42208: Move _PyImport_Cleanup() to pylifecycle.c (GH-23040)
Victor Stinner
2020-10-30
1
-3/+290
*
bpo-42208: Pass tstate to _PyGC_CollectNoFail() (GH-23038)
Victor Stinner
2020-10-30
1
-2/+2
*
bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte...
Serhiy Storchaka
2020-10-26
1
-3/+9
*
bpo-41631: _ast module uses again a global state (#21961)
Victor Stinner
2020-09-15
1
-0/+6
*
bpo-1635741: Explict GC collect after PyInterpreterState_Clear() (GH-21902)
Hai Shi
2020-08-17
1
-4/+2
*
bpo-41162: Clear audit hooks later during finalization (GH-21222)
Konge
2020-07-03
1
-3/+7
*
bpo-1635741: Release Unicode interned strings at exit (GH-21269)
Victor Stinner
2020-07-01
1
-0/+1
*
bpo-40521: Cleanup finalize_interp_types() (GH-21265)
Victor Stinner
2020-07-01
1
-2/+2
*
bpo-40521: Optimize PyBytes_FromStringAndSize(str, 0) (GH-21142)
Victor Stinner
2020-06-25
1
-0/+5
*
bpo-40521: Always create the empty tuple singleton (GH-21116)
Victor Stinner
2020-06-24
1
-1/+8
*
bpo-40521: Make empty Unicode string per interpreter (GH-21096)
Victor Stinner
2020-06-23
1
-5/+3
*
bpo-40521: Make MemoryError free list per interpreter (GH-21086)
Victor Stinner
2020-06-23
1
-5/+2
*
bpo-40521: Empty frozenset is no longer a singleton (GH-21085)
Raymond Hettinger
2020-06-23
1
-1/+0
*
Call _PyWarnings_InitState() in subinterpreters (GH-21078)
Victor Stinner
2020-06-23
1
-11/+9
*
bpo-40521: Make bytes singletons per interpreter (GH-21074)
Victor Stinner
2020-06-23
1
-3/+1
*
bpo-40521: Make the empty frozenset per interpreter (GH-21068)
Victor Stinner
2020-06-23
1
-3/+1
*
bpo-40521: Make dict free lists per-interpreter (GH-20645)
Victor Stinner
2020-06-23
1
-3/+1
*
bpo-41006: Remove init_sys_streams() hack (GH-20954)
Victor Stinner
2020-06-17
1
-13/+0
*
bpo-40939: Remove the old parser (GH-20768)
Pablo Galindo
2020-06-11
1
-3/+0
*
bpo-40910: Export Py_GetArgcArgv() function (GH-20721)
Victor Stinner
2020-06-08
1
-5/+9
*
bpo-40887: Fix finalize_interp_clear() for free lists (GH-20698)
Victor Stinner
2020-06-07
1
-27/+17
*
bpo-40521: Make context free list per-interpreter (GH-20644)
Victor Stinner
2020-06-05
1
-4/+1
*
bpo-40521: Make async gen free lists per-interpreter (GH-20643)
Victor Stinner
2020-06-05
1
-1/+5
*
bpo-40521: Make list free list per-interpreter (GH-20642)
Victor Stinner
2020-06-05
1
-3/+3
*
bpo-40521: Make frame free list per-interpreter (GH-20638)
Victor Stinner
2020-06-04
1
-4/+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/+3
*
bpo-40513: Per-interpreter GIL (GH-19943)
Victor Stinner
2020-05-05
1
-1/+5
*
bpo-40513: new_interpreter() init GIL earlier (GH-19942)
Victor Stinner
2020-05-05
1
-4/+4
[next]