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_pystate.h
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-39946: Remove _PyThreadState_GetFrame (GH-19094)
Victor Stinner
2020-03-20
1
-4/+0
*
bpo-40010: Optimize pending calls in multithreaded applications (GH-19091)
Victor Stinner
2020-03-20
1
-2/+8
*
bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087)
Victor Stinner
2020-03-20
1
-1/+27
*
bpo-39984: Move pending calls to PyInterpreterState (GH-19066)
Victor Stinner
2020-03-19
1
-4/+4
*
bpo-39984: Add PyInterpreterState.ceval (GH-19047)
Victor Stinner
2020-03-17
1
-6/+10
*
bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340)
Victor Stinner
2020-03-12
1
-2/+0
*
bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816)
Victor Stinner
2020-03-06
1
-6/+17
*
Add PyInterpreterState.fs_codec.utf8 (GH-18367)
Victor Stinner
2020-02-05
1
-0/+1
*
bpo-38858: Small integer per interpreter (GH-17315)
Victor Stinner
2019-12-17
1
-0/+12
*
bpo-38858: _PyImport_FixupExtensionObject() handles subinterpreters (GH-17350)
Victor Stinner
2019-11-22
1
-0/+6
*
bpo-38858: Add _Py_IsMainInterpreter(tstate) (GH-17293)
Victor Stinner
2019-11-20
1
-0/+2
*
bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287)
Victor Stinner
2019-11-20
1
-4/+3
*
bpo-36710: Add PyInterpreterState.runtime field (GH-17270)
Victor Stinner
2019-11-20
1
-1/+5
*
bpo-36876: Moved Parser/listnode.c statics to interpreter state. (GH-16328)
Vinay Sajip
2019-11-07
1
-0/+9
*
bpo-38353: Cleanup includes in the internal C API (GH-16548)
Victor Stinner
2019-10-02
1
-10/+3
*
bpo-38070: Add _PyRuntimeState.preinitializing (GH-16245)
Victor Stinner
2019-09-17
1
-3/+8
*
bpo-37392: Remove sys.setcheckinterval() (GH-14355)
Victor Stinner
2019-06-25
1
-3/+0
*
bpo-36710: Use tstate in pylifecycle.c (GH-14249)
Victor Stinner
2019-06-19
1
-1/+1
*
bpo-36710: Add tstate parameter in import.c (GH-14218)
Victor Stinner
2019-06-19
1
-0/+3
*
Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)
Victor Stinner
2019-06-04
1
-6/+6
*
Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...
Victor Stinner
2019-06-03
1
-10/+2
*
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13...
Eric Snow
2019-06-01
1
-2/+10
*
bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)
Eric Snow
2019-06-01
1
-6/+6
*
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner
2019-05-27
1
-7/+7
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
1
-0/+16
*
bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934)
Victor Stinner
2019-05-10
1
-6/+53
*
bpo-36737: Use the module state C-API for warnings. (gh-13159)
Eric Snow
2019-05-10
1
-1/+2
*
bpo-36775: _PyCoreConfig only uses wchar_t* (GH-13062)
Victor Stinner
2019-05-02
1
-1/+8
*
bpo-36710: PyOS_AfterFork_Child() pass runtime parameter (GH-12936)
Victor Stinner
2019-04-24
1
-5/+7
*
bpo-36710: Add runtime parameter to _PyThreadState_Init() (GH-12935)
Victor Stinner
2019-04-24
1
-0/+5
*
bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853)
Victor Stinner
2019-04-17
1
-2/+2
*
bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()...
Eric Snow
2019-04-12
1
-3/+0
*
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12...
Eric Snow
2019-04-12
1
-0/+3
*
bpo-36444: Remove _PyMainInterpreterConfig (GH-12571)
Victor Stinner
2019-03-27
1
-1/+0
*
bpo-36301: Add _PyRuntimeState.preconfig (GH-12506)
Victor Stinner
2019-03-23
1
-0/+2
*
bpo-36301: Add _PyRuntime.pre_initialized (GH-12457)
Victor Stinner
2019-03-20
1
-2/+10
*
bpo-36356: pymain_free() calls _PyRuntime_Finalize() (GH-12435)
Victor Stinner
2019-03-19
1
-0/+2
*
bpo-36124: Add PyInterpreterState.dict. (gh-12132)
Eric Snow
2019-03-15
1
-0/+2
*
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...
Eric Snow
2019-03-15
1
-54/+1
*
bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245)
Eric Snow
2019-03-09
1
-0/+1
*
bpo-33608: Minor cleanup related to pending calls. (gh-12247)
Eric Snow
2019-03-09
1
-0/+4
*
Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...
Victor Stinner
2019-03-04
1
-8/+54
*
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...
Eric Snow
2019-03-01
1
-54/+1
*
bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11...
Eric Snow
2019-02-24
1
-0/+7
*
bpo-35886: Make PyInterpreterState an opaque type in the public API. (GH-11731)
Eric Snow
2019-02-23
1
-24/+85
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-0/+214