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
/
Lib
/
test
/
test_threading.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
GH-110829: Ensure Thread.join() joins the OS thread (#110848)
Antoine Pitrou
2023-11-04
1
-3/+44
*
gh-110656: Fix logging test_post_fork_child_no_deadlock() if ASAN (#110657)
Victor Stinner
2023-10-11
1
-8/+1
*
gh-105716: Support Background Threads in Subinterpreters Consistently (gh-109...
Eric Snow
2023-10-02
1
-0/+49
*
gh-110031: Skip test_threading fork tests if ASAN (#110100)
Victor Stinner
2023-09-29
1
-16/+25
*
gh-109593: Fix reentrancy issue in multiprocessing resource_tracker (#109629)
Antoine Pitrou
2023-09-26
1
-0/+3
*
gh-89363: Skip threading test_is_alive_after_fork() if ASAN (#109835)
Victor Stinner
2023-09-25
1
-0/+4
*
gh-102029: Deprecate passing arguments to `_PyRLock` in `threading` (#102071)
Nikita Sobolev
2023-08-17
1
-0/+24
*
gh-106236: Replace `assert` with `raise RuntimeError` in `threading.py` (#106...
Nikita Sobolev
2023-07-12
1
-0/+8
*
gh-104690 Disallow thread creation and fork at interpreter finalization (#104...
chgnrdv
2023-06-04
1
-28/+16
*
gh-104837: Revert "gh-104341: Add a Separate "Running" Lock for Each Thread (...
Gregory P. Smith
2023-05-24
1
-12/+12
*
gh-104341: Add a Separate "Running" Lock for Each Thread (gh-104754)
Eric Snow
2023-05-23
1
-12/+12
*
gh-99113: Add PyInterpreterConfig.own_gil (gh-104204)
Eric Snow
2023-05-05
1
-0/+1
*
gh-101659: Isolate "obmalloc" State to Each Interpreter (gh-101660)
Eric Snow
2023-04-24
1
-0/+1
*
gh-102056: Fix a few bugs in error handling of exception printing code (#102078)
Irit Katriel
2023-02-20
1
-0/+31
*
gh-98627: Add an Optional Check for Extension Module Subinterpreter Compatibi...
Eric Snow
2023-02-16
1
-0/+1
*
gh-100228: Warn from os.fork() if other threads exist. (#100229)
Gregory P. Smith
2022-12-29
1
-45/+65
*
gh-98610: Adjust the Optional Restrictions on Subinterpreters (GH-98618)
Eric Snow
2022-10-31
1
-0/+56
*
GH-93503: Add thread-specific APIs to set profiling and tracing functions in ...
Pablo Galindo Salgado
2022-08-24
1
-0/+59
*
gh-69443: Add test.support.Py_DEBUG constant (#93226)
Victor Stinner
2022-05-25
1
-3/+0
*
gh-89898: Fix test_threading.test_args_argument() (#92885)
Victor Stinner
2022-05-17
1
-0/+1
*
gh-88750: Remove the PYTHONTHREADDEBUG env var support. (#92509)
Gregory P. Smith
2022-05-09
1
-10/+0
*
bpo-40280: Detect missing threading on WASM platforms (GH-32352)
Christian Heimes
2022-04-07
1
-0/+1
*
bpo-45735: Promise the long-time truth that `args=list` works (GH-30982)
Charlie Zhao
2022-02-26
1
-0/+26
*
bpo-40280: Skip subprocess-based tests on wasm32-emscripten (GH-30615)
Christian Heimes
2022-01-25
1
-1/+2
*
bpo-40280: Add requires_fork test helper (GH-30622)
Christian Heimes
2022-01-16
1
-9/+9
*
bpo-1596321: Fix threading._shutdown() for the main thread (GH-28549)
Victor Stinner
2021-09-27
1
-0/+33
*
bpo-45020: Freeze some of the modules imported during startup. (gh-28335)
Eric Snow
2021-09-15
1
-1/+2
*
bpo-44584: Deprecate PYTHONTHREADDEBUG env var (GH-27065)
Victor Stinner
2021-08-06
1
-0/+13
*
bpo-44645: Check for interrupts on any potentially backwards edge (GH-27216)
Mark Shannon
2021-07-19
1
-0/+25
*
Revert "bpo-44645: Check for interrupts on any potentially backwards edge. (G...
Pablo Galindo Salgado
2021-07-16
1
-25/+0
*
bpo-44645: Check for interrupts on any potentially backwards edge. (GH-27167)
Mark Shannon
2021-07-16
1
-0/+25
*
bpo-43988: Use check disallow instantiation helper (GH-26392)
Erlend Egeberg Aasland
2021-05-27
1
-2/+1
*
bpo-25872: Add unit tests for linecache and threading (GH-25913)
uniocto
2021-05-18
1
-1/+18
*
bpo-37788: Fix reference leak when Thread is never joined (GH-26103)
Antoine Pitrou
2021-05-14
1
-0/+7
*
bpo-43916: Apply Py_TPFLAGS_DISALLOW_INSTANTIATION to selected types (GH-25748)
Erlend Egeberg Aasland
2021-04-30
1
-0/+7
*
bpo-43843: libregrtest uses threading.excepthook (GH-25400)
Victor Stinner
2021-04-16
1
-0/+13
*
bpo-43723: Deprecate camelCase aliases from threading (GH-25174)
Jelle Zijlstra
2021-04-12
1
-8/+27
*
bpo-43356: Allow passing a signal number to interrupt_main() (GH-24755)
Antoine Pitrou
2021-03-11
1
-10/+33
*
bpo-41149: Fix a bug in threading that causes fals-y threads callables to fai...
BarneyStratford
2021-02-02
1
-0/+20
*
bpo-42639: atexit now logs callbacks exceptions (GH-23771)
Victor Stinner
2020-12-14
1
-1/+0
*
bpo-42350: Fix Thread._reset_internal_locks() (GH-23268)
Victor Stinner
2020-11-16
1
-0/+29
*
bpo-42308: Add threading.__excepthook__ (GH-23218)
Mario Corchero
2020-11-12
1
-0/+21
*
bpo-42251: Add gettrace and getprofile to threading (GH-23125)
Mario Corchero
2020-11-04
1
-0/+21
*
bpo-41833: threading.Thread now uses the target name (GH-22357)
Victor Stinner
2020-09-23
1
-3/+31
*
bpo-41521: Rename blacklist parameter to not_exported (GH-21824)
Victor Stinner
2020-08-17
1
-2/+2
*
bpo-40275: Use new test.support helper submodules in tests (GH-21449)
Hai Shi
2020-08-03
1
-1/+2
*
bpo-40275: Adding threading_helper submodule in test.support (GH-20263)
Hai Shi
2020-05-27
1
-4/+5
*
bpo-40234: Revert "bpo-37266: Daemon threads are now denied in subinterpreter...
Victor Stinner
2020-04-12
1
-23/+19
*
bpo-40094: Enhance threading tests (GH-19260)
Victor Stinner
2020-03-31
1
-13/+20
*
bpo-39812: Remove daemon threads in concurrent.futures (GH-19149)
Kyle Stanley
2020-03-27
1
-0/+50
[next]