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
/
_threadmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-114271: Make `thread._rlock` thread-safe in free-threaded builds (#115102)
mpage
2024-02-16
1
-10/+22
*
gh-114570: Add PythonFinalizationError exception (#115352)
Victor Stinner
2024-02-14
1
-1/+1
*
gh-114271: Make `PyInterpreterState.threads.count` thread-safe in free-thread...
mpage
2024-02-12
1
-3/+3
*
gh-115035: Mark ThreadHandles as non-joinable earlier after forking (#115042)
Sam Gross
2024-02-06
1
-17/+36
*
gh-114315: Make `threading.Lock` a real class, not a factory function (#114479)
Nikita Sobolev
2024-01-25
1
-4/+29
*
gh-114414: Assert PyType_GetModuleByDef result in _threadmodule (#114415)
Nikita Sobolev
2024-01-22
1
-0/+3
*
gh-111789: Use PyDict_GetItemRef() in Modules/_threadmodule.c (gh-112077)
Serhiy Storchaka
2023-11-27
1
-6/+4
*
gh-111262: Add PyDict_Pop() function (#112028)
Victor Stinner
2023-11-14
1
-5/+2
*
GH-110829: Ensure Thread.join() joins the OS thread (#110848)
Antoine Pitrou
2023-11-04
1
-55/+282
*
gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)
Serhiy Storchaka
2023-11-03
1
-2/+2
*
gh-106320: Re-add some PyLong/PyDict C-API functions (GH-#111162)
scoder
2023-10-25
1
-1/+0
*
gh-84570: Add Timeouts to SendChannel.send() and RecvChannel.recv() (gh-110567)
Eric Snow
2023-10-17
1
-5/+6
*
gh-84570: Send-Wait Fixes for _xxinterpchannels (gh-111006)
Eric Snow
2023-10-17
1
-50/+2
*
gh-109860: Use a New Thread State When Switching Interpreters, When Necessary...
Eric Snow
2023-10-03
1
-1/+1
*
gh-105716: Support Background Threads in Subinterpreters Consistently (gh-109...
Eric Snow
2023-10-02
1
-1/+15
*
gh-109593: Fix reentrancy issue in multiprocessing resource_tracker (#109629)
Antoine Pitrou
2023-09-26
1
-0/+14
*
gh-109795: `_thread.start_new_thread`: allocate thread bootstate using raw me...
Radislav Chugunov
2023-09-25
1
-3/+6
*
gh-109611: Add convenient C API function _PyFile_Flush() (GH-109612)
Serhiy Storchaka
2023-09-23
1
-3/+1
*
gh-108987: Fix _thread.start_new_thread() race condition (#109135)
Victor Stinner
2023-09-11
1
-16/+31
*
gh-104690: thread_run() checks for tstate dangling pointer (#109056)
Victor Stinner
2023-09-08
1
-2/+5
*
gh-106320: Remove private _PyErr_WriteUnraisableMsg() (#108863)
Victor Stinner
2023-09-04
1
-0/+1
*
gh-106320: Remove private _PySys functions (#108452)
Victor Stinner
2023-08-24
1
-0/+1
*
gh-106320: Remove private _PyDict functions (#108449)
Victor Stinner
2023-08-24
1
-2/+2
*
gh-106320: Remove private _PyEval function (#108433)
Victor Stinner
2023-08-24
1
-0/+1
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-5/+5
*
gh-86493: Fix possible leaks in some modules initialization (GH-106768)
Serhiy Storchaka
2023-07-18
1
-2/+2
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-1/+1
*
gh-106320: Remove _PyInterpreterState_Get() alias (#106321)
Victor Stinner
2023-07-01
1
-1/+1
*
gh-105927: _abc and _thread use PyWeakref_GetRef() (#105961)
Victor Stinner
2023-06-21
1
-13/+13
*
gh-104812: Run Pending Calls in any Thread (gh-104813)
Eric Snow
2023-06-13
1
-1/+2
*
gh-104690 Disallow thread creation and fork at interpreter finalization (#104...
chgnrdv
2023-06-04
1
-0/+5
*
gh-99113: Add Py_MOD_PER_INTERPRETER_GIL_SUPPORTED (gh-104205)
Eric Snow
2023-05-05
1
-0/+1
*
gh-103712: Increase the length of the type name in AttributeError messages (#...
Alex Gaynor
2023-04-24
1
-1/+1
*
gh-59956: Clarify Runtime State Status Expectations (gh-101308)
Eric Snow
2023-01-30
1
-1/+1
*
gh-59956: Clarify GILState-related Code (gh-101161)
Eric Snow
2023-01-19
1
-7/+1
*
GH-100892: consolidate `HEAD_LOCK/HEAD_UNLOCK` macros (#100953)
Kumar Aditya
2023-01-15
1
-5/+0
*
GH-100892: Fix race in clearing `threading.local` (#100922)
Kumar Aditya
2023-01-11
1
-10/+20
*
bpo-15999: Accept arbitrary values for boolean parameters. (#15609)
Serhiy Storchaka
2022-12-03
1
-1/+1
*
gh-99377: Add audit events for thread creation and clear (GH-99378)
Steve Dower
2022-11-16
1
-1/+9
*
gh-98610: Adjust the Optional Restrictions on Subinterpreters (GH-98618)
Eric Snow
2022-10-31
1
-0/+20
*
gh-98608: Change _Py_NewInterpreter() to _Py_NewInterpreterFromConfig() (gh-9...
Eric Snow
2022-10-26
1
-1/+1
*
gh-95324: Emit a warning if an object doesn't call PyObject_GC_UnTrack during...
Pablo Galindo Salgado
2022-07-27
1
-0/+2
*
gh-91320: Use _PyCFunction_CAST() (#92251)
Victor Stinner
2022-05-03
1
-5/+5
*
bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)
Petr Viktorin
2022-02-11
1
-3/+3
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-21/+6
*
bpo-39277: Fix PY_TIMEOUT_MAX cast in _threadmodule.c (GH-31195)
Victor Stinner
2022-02-07
1
-1/+1
*
bpo-46417: _thread uses PyStructSequence_NewType() (GH-30733)
Victor Stinner
2022-01-21
1
-12/+14
*
bpo-46008: Stop calling _PyThreadState_Init() in new_threadstate(). (gh-29973)
Eric Snow
2021-12-08
1
-2/+2
*
bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)
Eric Snow
2021-12-07
1
-4/+4
*
pycore_pystate.h no longer redefines PyThreadState_GET() (GH-28921)
Victor Stinner
2021-10-13
1
-1/+1
[next]