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-112723: Call `PyThreadState_Clear()` from the correct interpreter (#112776)
Sam Gross
2023-12-13
1
-0/+2
*
gh-76785: Add Interpreter.prepare_main() (gh-113021)
Eric Snow
2023-12-12
1
-0/+56
*
gh-76785: Fixes for test.support.interpreters (gh-112982)
Eric Snow
2023-12-12
1
-12/+355
*
gh-76785: Return an "excinfo" Object From Interpreter.run() (gh-111573)
Eric Snow
2023-11-23
1
-69/+25
*
gh-76785: Crossinterp utils additions (gh-111530)
Eric Snow
2023-11-01
1
-390/+29
*
Simplify trivial calls of PyUnicode_FromFormat() (GH-111605)
Serhiy Storchaka
2023-11-01
1
-1/+1
*
gh-76785: Move the Cross-Interpreter Code to Its Own File (gh-111502)
Eric Snow
2023-10-30
1
-0/+1
*
gh-110964: Remove private _PyArg functions (#110966)
Victor Stinner
2023-10-17
1
-0/+2
*
gh-76785: Support Running Some Functions in Subinterpreters (gh-110251)
Eric Snow
2023-10-06
1
-24/+318
*
gh-76785: Print the Traceback from Interpreter.run() (gh-110322)
Eric Snow
2023-10-04
1
-1/+7
*
Revert "gh-76785: Print the Traceback from Interpreter.run() (gh-110248)" (gh...
Eric Snow
2023-10-03
1
-4/+0
*
gh-76785: Print the Traceback from Interpreter.run() (gh-110248)
Eric Snow
2023-10-03
1
-0/+4
*
gh-109860: Use a New Thread State When Switching Interpreters, When Necessary...
Eric Snow
2023-10-03
1
-44/+67
*
gh-105716: Support Background Threads in Subinterpreters Consistently (gh-109...
Eric Snow
2023-10-02
1
-43/+41
*
gh-76785: Use Pending Calls When Releasing Cross-Interpreter Data (gh-109556)
Eric Snow
2023-09-19
1
-18/+11
*
gh-108511: Add C API functions which do not silently ignore errors (GH-109025)
Serhiy Storchaka
2023-09-17
1
-1/+1
*
gh-106320: Remove private _PyErr_ChainExceptions() (#108713)
Victor Stinner
2023-08-31
1
-0/+6
*
GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...
Mark Shannon
2023-08-17
1
-1/+1
*
gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-107359)
Eric Snow
2023-07-27
1
-15/+10
*
gh-106320: Remove private _PyInterpreterID C API (#107053)
Victor Stinner
2023-07-22
1
-1/+1
*
gh-105873: Make `_xxsubinterpreters` use exception type name in shared except...
Radislav Chugunov
2023-07-08
1
-1/+1
*
gh-106320: Remove private _PyInterpreterState functions (#106325)
Victor Stinner
2023-07-02
1
-1/+5
*
gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-105258)
Eric Snow
2023-06-02
1
-9/+3
*
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
[next]