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
*
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
*
Fix typos in the Modules directory (GH-28761)
Christian Clauss
2021-10-07
1
-1/+1
*
bpo-41710: Add private _PyDeadline_Get() function (GH-28674)
Victor Stinner
2021-10-01
1
-4/+3
*
bpo-41710: PyThread_acquire_lock_timed() clamps the timout (GH-28643)
Victor Stinner
2021-09-30
1
-1/+1
*
bpo-44434: Don't call PyThread_exit_thread() explicitly (GH-26758)
Victor Stinner
2021-06-21
1
-1/+3
*
bpo-43908: Make heap types converted during 3.10 alpha immutable (GH-26351)
Erlend Egeberg Aasland
2021-06-17
1
-4/+7
*
bpo-42972: _thread.RLock implements the GH protocol (GH-26734)
Victor Stinner
2021-06-15
1
-1/+10
*
bpo-43879: Add native_thread_id field to PyThreadState (GH-25458)
Gabriele N. Tornetta
2021-05-26
1
-0/+5
*
bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)
Erlend Egeberg Aasland
2021-04-30
1
-2/+3
*
bpo-40137: Add pycore_moduleobject.h internal header (GH-25507)
Victor Stinner
2021-04-21
1
-2/+3
*
bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)
Antoine Pitrou
2021-03-11
1
-7/+23
*
bpo-43268: local_clear() uses _PyInterpreterState_GET() (GH-24583)
Victor Stinner
2021-02-19
1
-15/+14
*
bpo-1635741: Port _thread to multiphase init (GH-23811)
Victor Stinner
2020-12-18
1
-90/+221
*
bpo-1635741: Refactor _threadmodule.c (GH-23793)
Victor Stinner
2020-12-16
1
-311/+226
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-1/+1
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-3/+3
*
bpo-42006: Stop using PyDict_GetItem, PyDict_GetItemString and _PyDict_GetIte...
Serhiy Storchaka
2020-10-26
1
-2/+6
*
bpo-40453: Add PyConfig._isolated_subinterpreter (GH-19820)
Victor Stinner
2020-05-01
1
-0/+8
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-5/+3
*
bpo-40268: Remove explicit pythread.h includes (#19529)
Victor Stinner
2020-04-15
1
-1/+0
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-1/+1
*
bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509)
Victor Stinner
2020-04-14
1
-3/+3
*
bpo-40268: Include explicitly pycore_interp.h (GH-19505)
Victor Stinner
2020-04-14
1
-1/+2
*
bpo-40234: Revert "bpo-37266: Daemon threads are now denied in subinterpreter...
Victor Stinner
2020-04-12
1
-24/+0
*
bpo-40089: Add _at_fork_reinit() method to locks (GH-19195)
Victor Stinner
2020-04-07
1
-14/+53
*
Remove unused variable to fix compiler warning in _threadmodule.c (GH-19064)
Pablo Galindo
2020-03-18
1
-2/+0
*
bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051)
Victor Stinner
2020-03-18
1
-1/+1
*
bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978)
Victor Stinner
2020-03-13
1
-3/+3
*
bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883)
Victor Stinner
2020-03-09
1
-1/+1
*
bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809)
Andy Lester
2020-03-06
1
-2/+2
*
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester
2020-03-04
1
-2/+2
*
bpo-38858: Add _Py_IsMainInterpreter(tstate) (GH-17293)
Victor Stinner
2019-11-20
1
-3/+3
*
bpo-36710: Add PyInterpreterState.runtime field (GH-17270)
Victor Stinner
2019-11-20
1
-1/+1
*
bpo-37878: Remove PyThreadState_DeleteCurrent() function (GH-15315)
Joannah Nanjekye
2019-09-05
1
-2/+7
*
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka
2019-09-01
1
-3/+4
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-1/+1
*
bpo-37266: Daemon threads are now denied in subinterpreters (GH-14049)
Victor Stinner
2019-06-14
1
-0/+24
*
Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795)
Victor Stinner
2019-06-04
1
-1/+1
*
bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)
Eric Snow
2019-06-01
1
-1/+1
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-8/+8
*
bpo-37076: _thread.start_new_thread() calls _PyErr_WriteUnraisableMsg() (GH-1...
Victor Stinner
2019-05-29
1
-14/+4
*
bpo-1230540: Add threading.excepthook() (GH-13515)
Victor Stinner
2019-05-27
1
-0/+156
*
bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)
Jake Tesler
2019-05-22
1
-0/+20
*
Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993...
Victor Stinner
2019-05-21
1
-16/+0
[next]