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
/
Modules
/
_xxsubinterpretersmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-99113: Share the GIL via PyInterpreterState.ceval.gil (gh-104203)
Eric Snow
2023-05-05
1
-0/+1
*
gh-104109: Expose Py_NewInterpreterFromConfig() in the Public C-API (gh-104110)
Eric Snow
2023-05-03
1
-4/+4
*
gh-101659: Add _Py_AtExit() (gh-103298)
Eric Snow
2023-04-06
1
-10/+1
*
Fix a compiler warning in _xxsubinterpretermodule.c (#103245)
T. Wouters
2023-04-04
1
-1/+1
*
gh-98608: Stop Treating All Errors from _Py_NewInterpreterFromConfig() as Fat...
Eric Snow
2023-03-21
1
-2/+7
*
gh-101659: Avoid Allocation for Shared Exceptions in the _xxsubinterpreters M...
Eric Snow
2023-03-13
1
-74/+49
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives in ...
Irit Katriel
2023-03-06
1
-14/+8
*
gh-101524: Split Up the _xxsubinterpreters Module (gh-101526)
Eric Snow
2023-02-04
1
-2178/+11
*
gh-99984: Fix Compiler Warnings (#100036)
Eric Snow
2022-12-05
1
-2/+6
*
gh-99741: Implement Multi-Phase Init for the _xxsubinterpreters Module (gh-99...
Eric Snow
2022-12-05
1
-123/+226
*
gh-99741: Clean Up the _xxsubinterpreters Module (gh-99940)
Eric Snow
2022-12-02
1
-299/+615
*
gh-99537: Use Py_SETREF(var, NULL) in C code (#99687)
Victor Stinner
2022-11-23
1
-2/+1
*
gh-99537: Use Py_CLEAR() function in C code (#99686)
Victor Stinner
2022-11-22
1
-2/+1
*
gh-99300: Use Py_NewRef() in Modules/ directory (#99468)
Victor Stinner
2022-11-14
1
-6/+5
*
gh-98610: Adjust the Optional Restrictions on Subinterpreters (GH-98618)
Eric Snow
2022-10-31
1
-5/+3
*
gh-98608: Change _Py_NewInterpreter() to _Py_NewInterpreterFromConfig() (gh-9...
Eric Snow
2022-10-26
1
-1/+6
*
gh-93937, C API: Move PyFrame_GetBack() to Python.h (#93938)
Victor Stinner
2022-06-19
1
-1/+0
*
bpo-40514: Drop EXPERIMENTAL_ISOLATED_SUBINTERPRETERS (gh-93185)
Eric Snow
2022-05-27
1
-15/+0
*
gh-92434: Silence a compiler warning in _xxsubinterpretersmodule.c for 32bit ...
neonene
2022-05-25
1
-1/+1
*
gh-91320: Use _PyCFunction_CAST() (#92251)
Victor Stinner
2022-05-03
1
-12/+12
*
bpo-47045: Remove `f_state` field (GH-31963)
Mark Shannon
2022-03-22
1
-4/+1
*
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Victor Stinner
2022-02-25
1
-1/+1
*
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon
2021-10-28
1
-1/+1
*
bpo-43974: Move Py_BUILD_CORE_MODULE into module code (GH-29157)
Christian Heimes
2021-10-22
1
-0/+3
*
bpo-35081: Move interpreteridobject.h to Include/internal/ (GH-28969)
Victor Stinner
2021-10-15
1
-1/+1
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
1
-1/+2
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
1
-2/+2
*
bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721)
Victor Stinner
2021-04-30
1
-14/+6
*
bpo-43472: Ensure PyInterpreterState_New audit events are raised when called ...
Steve Dower
2021-04-21
1
-1/+1
*
bpo-40941: Unify implicit and explicit state in the frame and generator objec...
Mark Shannon
2020-07-17
1
-1/+1
*
Revert "bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)" (GH...
Victor Stinner
2020-05-14
1
-1026/+121
*
bpo-40613: Remove compiler warning from _xxsubinterpretersmodule (GH-20069)
Dong-hee Na
2020-05-13
1
-0/+8
*
bpo-32604: [_xxsubinterpreters] Propagate exceptions. (GH-19768)
Eric Snow
2020-05-07
1
-121/+1018
*
bpo-40513: _xxsubinterpreters.run_string() releases the GIL (GH-19944)
Victor Stinner
2020-05-05
1
-0/+15
*
bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)
Victor Stinner
2020-05-01
1
-5/+9
*
bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781)
Victor Stinner
2020-04-29
1
-4/+7
*
bpo-38880: List interpreters associated with a channel end (GH-17323)
Lewis Gaul
2020-04-29
1
-6/+83
*
bpo-32604: Add support for a "default" arg in channel_recv(). (GH-19770)
Eric Snow
2020-04-28
1
-11/+25
*
bpo-40302: Replace PY_INT64_T with int64_t (GH-19573)
Victor Stinner
2020-04-17
1
-1/+1
*
bpo-39947: Use PyThreadState_GetFrame() (GH-19159)
Victor Stinner
2020-03-25
1
-3/+4
*
bpo-39947: Add PyInterpreterState_Get() function (GH-18979)
Victor Stinner
2020-03-13
1
-3/+3
*
bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)
Victor Stinner
2020-02-07
1
-1/+1
*
closes bpo-39262: Use specific out-of-memory message in _sharedexception_bind...
Alex Henrie
2020-01-09
1
-2/+4
*
bpo-36854: Clear the current thread later (GH-17279)
Victor Stinner
2019-11-20
1
-1/+0
*
bpo-38005: Fixed comparing and creating of InterpreterID and ChannelID. (GH-1...
Serhiy Storchaka
2019-09-13
1
-85/+65
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-1/+1
*
bpo-36594: Fix incorrect use of %p in format strings (GH-12769)
Zackery Spytz
2019-05-06
1
-1/+1
*
bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as n...
Eric Snow
2019-03-15
1
-334/+35
*
Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall()...
Victor Stinner
2019-03-04
1
-35/+334
[next]