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
*
gh-98608: Fix Failure-handling in new_interpreter() (gh-102658)
Miss Islington (bot)
2023-03-21
1
-1/+1
*
[3.11] gh-99337: Fix compile errors with gcc 12 on macOS (GH-99470) (#99638)
Miss Islington (bot)
2022-11-21
1
-3/+4
*
[3.11] gh-96853: Restore test coverage for Py_Initialize(Ex) (GH-98874)
Miss Islington (bot)
2022-10-30
1
-0/+1
*
[3.11] bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185) (GH-9...
Eric Snow
2022-05-28
1
-2/+0
*
bpo-46864: Suppress even more ob_shash deprecation warnings (GH-32176)
Christian Heimes
2022-03-30
1
-0/+5
*
bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)
Victor Stinner
2022-03-18
1
-2/+0
*
bpo-46841: Use inline caching for calls (GH-31709)
Brandt Bucher
2022-03-07
1
-0/+10
*
bpo-46753: Add the empty tuple to the _PyRuntimeState.global_objects. (gh-31345)
Eric Snow
2022-02-28
1
-5/+0
*
Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596)
Kumar Aditya
2022-02-26
1
-1/+3
*
bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580)
Victor Stinner
2022-02-25
1
-1/+1
*
bpo-46430: Fix memory leak in interned strings of deep-frozen modules (GH-31549)
Kumar Aditya
2022-02-24
1
-2/+4
*
bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...
Eric Snow
2022-02-23
1
-4/+0
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-43/+25
*
bpo-40170: Move _Py_GetAllocatedBlocks() to pycore_pymem.h (GH-30943)
Victor Stinner
2022-01-27
1
-0/+1
*
bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853)
Kumar Aditya
2022-01-27
1
-0/+1
*
bpo-46417: Clear symtable identifiers at exit (GH-30809)
Victor Stinner
2022-01-22
1
-0/+4
*
bpo-46417: Clear _io module static objects at exit (GH-30807)
Victor Stinner
2022-01-22
1
-0/+6
*
bpo-46417: Clear Unicode static types at exit (GH-30806)
Victor Stinner
2022-01-22
1
-0/+1
*
bpo-46417: Factorize _PyExc_InitTypes() code (GH-30804)
Victor Stinner
2022-01-22
1
-6/+4
*
bpo-46417: Clear more static types (GH-30796)
Victor Stinner
2022-01-22
1
-1/+1
*
bpo-46417: Py_Finalize() clears static types (GH-30743)
Victor Stinner
2022-01-21
1
-0/+1
*
bpo-46417: Call _PyDebug_PrintTotalRefs() later (GH-30744)
Victor Stinner
2022-01-21
1
-6/+6
*
bpo-46417: Finalize structseq types at exit (GH-30645)
Victor Stinner
2022-01-21
1
-0/+6
*
bpo-46370: Move the static initializer for _PyRuntime to its own header file....
Eric Snow
2022-01-13
1
-0/+1
*
bpo-45953: Statically allocate and initialize global bytes objects. (gh-30096)
Eric Snow
2022-01-11
1
-6/+0
*
bpo-45919: Remove out of date comment (GH-30090)
Dong-hee Na
2021-12-14
1
-2/+4
*
bpo-45953: Statically initialize the small ints. (gh-30092)
Eric Snow
2021-12-14
1
-2/+0
*
bpo-45919: Use WinAPI GetFileType() in is_valid_fd() (GH-30082)
Dong-hee Na
2021-12-13
1
-12/+10
*
bpo-46008: Make runtime-global object/type lifecycle functions and state cons...
Eric Snow
2021-12-09
1
-37/+71
*
bpo-46008: Add _PyInterpreterState_Main(). (gh-29978)
Eric Snow
2021-12-08
1
-1/+1
*
bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)
Eric Snow
2021-12-07
1
-1/+1
*
bpo-45582: Port getpath[p].c to Python (GH-29041)
Steve Dower
2021-12-03
1
-3/+3
*
bpo-40280: Optimize ints and and startup on wasm (GH-29887)
Christian Heimes
2021-12-02
1
-1/+5
*
bpo-45915: use fcntl(fd, F_GETFD) in is_valid_fd() (GH-29821)
Christian Heimes
2021-11-28
1
-3/+15
*
Store actual ints, not pointers to them in the interpreter state. (GH-29274)
Mark Shannon
2021-10-28
1
-3/+1
*
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon
2021-10-28
1
-1/+1
*
bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...
Irit Katriel
2021-10-22
1
-0/+2
*
bpo-45434: pyport.h no longer includes <stdlib.h> (GH-28914)
Victor Stinner
2021-10-13
1
-0/+1
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
1
-1/+1
*
bpo-45061: Detect refcount bug on empty tuple singleton (GH-28503)
Victor Stinner
2021-09-21
1
-0/+10
*
bpo-45020: Add -X frozen_modules=[on|off] to explicitly control use of frozen...
Eric Snow
2021-09-14
1
-2/+2
*
bpo-44895: Introduce PYTHONDUMPREFSFILE variable for refcount dumping (GH-27767)
Dong-hee Na
2021-08-17
1
-0/+20
*
bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065)
Victor Stinner
2021-08-06
1
-0/+5
*
bpo-32280: Store _PyRuntime in a named section (GH-4802)
Max BĂ©langer
2021-06-03
1
-2/+28
*
bpo-43680: _pyio.open() becomes a static method (GH-25354)
Victor Stinner
2021-04-12
1
-3/+3
*
bpo-42923: Fix _Py_DumpExtensionModules() for NULL sysdict (GH-25262)
Victor Stinner
2021-04-07
1
-6/+8
*
bpo-43687: Py_Initialize() creates singletons earlier (GH-25147)
Victor Stinner
2021-04-02
1
-44/+72
*
bpo-43244: Remove ast.h, asdl.h, Python-ast.h headers (GH-24933)
Victor Stinner
2021-03-23
1
-3/+0
*
bpo-43311: Create GIL autoTSSkey ealier (GH-24819)
Victor Stinner
2021-03-10
1
-2/+9
*
bpo-43390: Set SA_ONSTACK in PyOS_setsig (GH-24730)
Gregory P. Smith
2021-03-05
1
-1/+4
[next]