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
/
pystate.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
bpo-46864: Suppress deprecation warnings for ob_shash. (GH-32042)
Inada Naoki
2022-03-23
1
-1/+4
*
bpo-45923: Decouple suspension of tracing from tracing flag. (GH-31908)
Mark Shannon
2022-03-15
1
-17/+0
*
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Victor Stinner
2022-02-25
1
-4/+4
*
bpo-45459: C API uses type names rather than structure names (GH-31528)
Victor Stinner
2022-02-24
1
-4/+4
*
Pass reference to func, as well as args, when pushing frame. (GH-31100)
Mark Shannon
2022-02-03
1
-20/+0
*
bpo-46072: Add some frame stats. (GH-31060)
Mark Shannon
2022-02-02
1
-0/+2
*
bpo-45953: Preserve backward compatibility on some PyThreadState field names....
Eric Snow
2022-02-01
1
-4/+4
*
bpo-45953: Statically initialize all the non-object PyInterpreterState fields...
Eric Snow
2022-01-14
1
-9/+0
*
bpo-45953: Statically initialize all the PyThreadState fields we can. (gh-30590)
Eric Snow
2022-01-14
1
-7/+5
*
Statically initialize _PyRuntimeState fields. (gh-30588)
Eric Snow
2022-01-13
1
-10/+0
*
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 the main interpreter (and initial thread state...
Eric Snow
2022-01-12
1
-16/+33
*
bpo-46090: Allow PyThreadState.datastack_* members to be NULL (GH-30234)
Brandt Bucher
2021-12-28
1
-21/+17
*
bpo-45711: Remove type and traceback from exc_info (GH-30122)
Irit Katriel
2021-12-17
1
-2/+0
*
bpo-46008: Move Py*State init into distinct functions. (gh-29977)
Eric Snow
2021-12-08
1
-101/+272
*
bpo-46008: Add _PyInterpreterState_Main(). (gh-29978)
Eric Snow
2021-12-08
1
-1/+1
*
bpo-46008: Stop calling _PyThreadState_Init() in new_threadstate(). (gh-29973)
Eric Snow
2021-12-08
1
-7/+13
*
bpo-46008: Use PyMem_RawCalloc() to allocate PyThreadState. (GH-29972)
Eric Snow
2021-12-07
1
-38/+2
*
bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)
Eric Snow
2021-12-07
1
-14/+14
*
bpo-46008: Return void from _PyEval_InitState(). (gh-29970)
Eric Snow
2021-12-07
1
-1/+3
*
bpo-45711: use exc_value instead of exc_type to determine if exc_info is vali...
Irit Katriel
2021-11-25
1
-5/+1
*
bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...
Mark Shannon
2021-11-23
1
-3/+3
*
bpo-42540: reallocation of id_mutex should not force default allocator (GH-29...
Sam Gross
2021-11-17
1
-1/+4
*
bpo-45753: Make recursion checks more efficient. (GH-29524)
Mark Shannon
2021-11-16
1
-2/+2
*
bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)
Mark Shannon
2021-10-28
1
-6/+16
*
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon
2021-10-28
1
-5/+5
*
bpo-43760: Rename _PyThreadState_DisableTracing() (GH-29032)
Victor Stinner
2021-10-18
1
-2/+2
*
bpo-43760: Add PyThreadState_EnterTracing() (GH-28542)
Victor Stinner
2021-10-15
1
-0/+16
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
1
-2/+5
*
Restore PEP 523 functionality. (GH-28871)
Mark Shannon
2021-10-11
1
-2/+10
*
bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)
Mark Shannon
2021-08-25
1
-10/+10
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
1
-29/+52
*
bpo-44348: Move trace-info to thread-state (GH-26623)
Mark Shannon
2021-06-10
1
-0/+2
*
bpo-43879: Add native_thread_id field to PyThreadState (GH-25458)
Gabriele N. Tornetta
2021-05-26
1
-0/+5
*
bpo-44032: Delay deletion of stack chunks until thread state is deleted. (GH-...
Mark Shannon
2021-05-24
1
-7/+7
*
bpo-44032: Move data stack to thread from FrameObject. (GH-26076)
Mark Shannon
2021-05-21
1
-1/+85
*
bpo-43977: Use tp_flags for collection matching (GH-25723)
Mark Shannon
2021-04-30
1
-2/+0
*
bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683)
Victor Stinner
2021-04-28
1
-6/+7
*
bpo-43760: Speed up check for tracing in interpreter dispatch (#25276)
Mark Shannon
2021-04-13
1
-1/+2
*
bpo-43311: Create GIL autoTSSkey ealier (GH-24819)
Victor Stinner
2021-03-10
1
-4/+15
*
bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)
Brandt Bucher
2021-02-26
1
-0/+2
*
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner
2021-02-19
1
-4/+4
*
bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577)
Victor Stinner
2021-02-19
1
-1/+1
*
bpo-42882: Fix MSVC warnings in pystate.c (GH-24440)
Ken Jin
2021-02-04
1
-1/+1
*
bpo-42882: _PyRuntimeState_Init() leaves unicode next_index unchanged (GH-24193)
Victor Stinner
2021-01-12
1
-1/+4
*
bpo-42745: Make the type cache per-interpreter (GH-23947)
Victor Stinner
2020-12-26
1
-0/+2
*
bpo-39465: Fix _PyUnicode_FromId() for subinterpreters (GH-20058)
Victor Stinner
2020-12-25
1
-11/+19
*
bpo-42639: Move atexit state to PyInterpreterState (GH-23763)
Victor Stinner
2020-12-15
1
-0/+1
*
bpo-42500: Fix recursion in or after except (GH-23568)
Mark Shannon
2020-12-02
1
-1/+1
*
bpo-42260: Add _PyInterpreterState_SetConfig() (GH-23158)
Victor Stinner
2020-11-04
1
-5/+11
[next]