| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-128279: Enhance the NetBSD compatibility for thread naming (#128280) | Furkan Onder | 2024-12-28 | 1 | -0/+3 |
|
|
* | gh-59705: Set OS thread name when Thread.name is changed (#127702) | Victor Stinner | 2024-12-10 | 1 | -2/+1 |
|
|
* | gh-59705: Add _thread.set_name() function (#127338) | Victor Stinner | 2024-12-06 | 1 | -0/+108 |
|
|
* | gh-127190: Fix local_setattro() error handling (#127366) | Victor Stinner | 2024-11-28 | 1 | -1/+1 |
|
|
* | gh-109746: Make _thread.start_new_thread delete state of new thread on its st... | Radislav Chugunov | 2024-11-22 | 1 | -0/+1 |
|
|
* | gh-125139: use `_PyRecursiveMutex` in `_thread.RLock` (#125144) | Kumar Aditya | 2024-10-14 | 1 | -118/+33 |
|
|
* | gh-117721: use PyMutex in `_thread.lock` (#125110) | Kumar Aditya | 2024-10-08 | 1 | -45/+11 |
|
|
* | gh-111178: Fix function signatures in _threadmodule.c (#124964) | Victor Stinner | 2024-10-04 | 1 | -49/+70 |
|
|
* | Fix typos (#123775) | algonell | 2024-09-09 | 1 | -2/+2 |
|
|
* | gh-120973: Fix thread-safety issues with `threading.local` (#121655) | mpage | 2024-07-19 | 1 | -150/+234 |
|
|
* | gh-116322: Add Py_mod_gil module slot (#116882) | Brett Simmers | 2024-05-03 | 1 | -0/+1 |
|
|
* | gh-118332: Fix deadlock involving stop the world (#118412) | Sam Gross | 2024-04-30 | 1 | -1/+2 |
|
|
* | gh-117764: Add signatures and improve docstrings in the _thread module (GH-11... | Serhiy Storchaka | 2024-04-12 | 1 | -46/+126 |
|
|
* | gh-113964: Don't prevent new threads until all non-daemon threads exit (#116677) | Sam Gross | 2024-03-19 | 1 | -1/+1 |
|
|
* | gh-116915: Make `_thread._ThreadHandle` support GC (#116934) | mpage | 2024-03-18 | 1 | -3/+13 |
|
|
* | gh-114271: Fix race in `Thread.join()` (#114839) | mpage | 2024-03-16 | 1 | -305/+674 |
|
|
* | gh-116437: Use new C API PyDict_Pop() to simplify the code (GH-116438) | Serhiy Storchaka | 2024-03-07 | 1 | -6/+2 |
|
|
* | gh-114271: Make `_thread.lock` thread-safe in free-threaded builds (#116433) | mpage | 2024-03-06 | 1 | -2/+2 |
|
|
* | gh-114271: Make `_thread.ThreadHandle` thread-safe in free-threaded builds (G... | mpage | 2024-03-01 | 1 | -40/+127 |
|
|
* | gh-110850: Replace private _PyTime_MAX with public PyTime_MAX (#115751) | Victor Stinner | 2024-02-21 | 1 | -1/+1 |
|
|
* | gh-110850: Use public PyTime functions (#115746) | Victor Stinner | 2024-02-20 | 1 | -1/+1 |
|
|
* | gh-110850: Cleanup pycore_time.h includes (#115724) | Victor Stinner | 2024-02-20 | 1 | -0/+1 |
|
|
* | gh-110850: Replace _PyTime_t with PyTime_t (#115719) | Victor Stinner | 2024-02-20 | 1 | -6/+6 |
|
|
* | 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 |
|
|