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
*
bpo-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner
2020-02-03
1
-4/+1
*
bpo-38614: Use test.support.SHORT_TIMEOUT constant (GH-17566)
Victor Stinner
2019-12-11
1
-2/+2
*
Revert "bpo-37788: Fix a reference leak if a thread is not joined (GH-15228)"...
Victor Stinner
2019-08-19
1
-8/+0
*
bpo-37788: Fix a reference leak if a thread is not joined (GH-15228)
Victor Stinner
2019-08-19
1
-0/+8
*
bpo-37804: Remove the deprecated method threading.Thread.isAlive() (GH-15225)
Dong-hee Na
2019-08-12
1
-2/+0
*
bpo-18049: Sync thread stack size to main thread size on macOS (GH-14748)
Ronald Oussoren
2019-08-01
1
-2/+0
*
Fix typos in comments, docs and test names (#15018)
Min ho Kim
2019-07-30
1
-1/+1
*
bpo-37266: Daemon threads are now denied in subinterpreters (GH-14049)
Victor Stinner
2019-06-14
1
-29/+37
*
tbpo-36402: Fix threading.Thread._stop() (GH-14047)
Victor Stinner
2019-06-13
1
-0/+24
*
bpo-36402: Fix threading._shutdown() race condition (GH-13948)
Victor Stinner
2019-06-12
1
-3/+52
*
bpo-36829: test_threading: Fix a ref cycle (GH-13752)
Victor Stinner
2019-06-02
1
-1/+5
*
bpo-1230540: Add threading.excepthook() (GH-13515)
Victor Stinner
2019-05-27
1
-0/+92
*
bpo-23395: Fix PyErr_SetInterrupt if the SIGINT signal is ignored or not hand...
Matěj Cepl
2019-05-23
1
-0/+35
*
bpo-36084: Add native thread ID (TID) to threading.Thread (GH-13463)
Jake Tesler
2019-05-22
1
-0/+5
*
Revert "bpo-36084: Add native thread ID to threading.Thread objects (GH-11993...
Victor Stinner
2019-05-21
1
-4/+0
*
bpo-36084: Add native thread ID to threading.Thread objects (GH-11993)
Jake Tesler
2019-05-12
1
-0/+4
*
bpo-22831: Use "with" to avoid possible fd leaks in tests (part 2). (GH-10929)
Serhiy Storchaka
2019-03-05
1
-7/+5
*
bpo-35283: Add deprecation warning for Thread.isAlive (GH-11454)
Dong-hee Na
2019-01-17
1
-1/+2
*
bpo-31516: Skip test_main_thread_during_shutdown() with COUNT_ALLOCS builds. ...
Zackery Spytz
2018-10-12
1
-0/+1
*
bpo-32593: Drop FreeBSD 9 and older support (#5232)
Victor Stinner
2018-01-22
1
-2/+1
*
Replace KB unit with KiB (#4293)
Victor Stinner
2017-11-08
1
-4/+4
*
Fix miscellaneous typos (#4275)
luzpaz
2017-11-05
1
-1/+1
*
bpo-31516: current_thread() should not return a dummy thread at shutdown (#3673)
Antoine Pitrou
2017-10-02
1
-0/+29
*
bpo-31234: Join timers in test_threading (#3598)
Victor Stinner
2017-09-15
1
-0/+2
*
bpo-31234: Add test.support.wait_threads_exit() (#3578)
Victor Stinner
2017-09-14
1
-6/+8
*
bpo-31234: Join threads in test_threading (#3579)
Victor Stinner
2017-09-14
1
-0/+4
*
bpo-31370: Remove support for threads-less builds (#3385)
Antoine Pitrou
2017-09-07
1
-2/+2
*
bpo-31234: test_threading: fix ref cycle (#3150)
Victor Stinner
2017-08-18
1
-0/+2
*
bpo-30387: Fix warning in test_threading (#1634)
Victor Stinner
2017-05-17
1
-3/+5
*
bpo-6532: Make the thread id an unsigned integer. (#781)
Serhiy Storchaka
2017-03-23
1
-3/+6
*
bpo-29376: Fix assertion error in threading._DummyThread.is_alive() (GH-236)
Xiang Zhang
2017-02-27
1
-0/+3
*
Issue #26941: Fix test_threading that hangs on the Android armv7 qemu emulator.
Xavier de Gaye
2016-12-08
1
-1/+1
*
Merge 3.5 (fix raise)
Victor Stinner
2016-08-18
1
-0/+18
|
\
|
*
Fix SystemError in "raise" statement
Victor Stinner
2016-08-18
1
-0/+18
*
|
Issue #19527: Fixed tests with defined COUNT_ALLOCS.
Serhiy Storchaka
2016-07-03
1
-1/+3
|
\
\
|
|
/
|
*
Issue #19527: Fixed tests with defined COUNT_ALLOCS.
Serhiy Storchaka
2016-07-03
1
-1/+3
*
|
Remove more unused imports in tests.
Serhiy Storchaka
2016-04-24
1
-1/+0
*
|
Issue #23277: Remove unused imports in tests.
Serhiy Storchaka
2016-04-24
1
-1/+1
*
|
Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error
Serhiy Storchaka
2016-04-17
1
-1/+1
|
\
\
|
|
/
|
*
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Serhiy Storchaka
2016-04-17
1
-1/+1
*
|
Issue #20556: Used specific assert methods in threading tests.
Serhiy Storchaka
2016-03-14
1
-14/+13
|
\
\
|
|
/
|
*
Issue #20556: Used specific assert methods in threading tests.
Serhiy Storchaka
2016-03-14
1
-14/+13
*
|
Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej
Martin Panter
2015-11-14
1
-0/+8
|
/
*
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
Yury Selivanov
2015-07-03
1
-1/+1
*
Issue #9517: Move script_helper to the support package.
Berker Peksag
2015-05-06
1
-1/+1
*
Issue #23943: Fix typos. Patch by Piotr Kasprzyk.
Berker Peksag
2015-04-14
1
-1/+1
*
Issue #22423: Unhandled exception in thread no longer causes unhandled
Serhiy Storchaka
2014-09-21
1
-2/+83
*
Issue #20526, #19466: Revert changes of issue #19466 which introduces a
Victor Stinner
2014-02-13
1
-49/+0
*
Issue #20532: Tests which use _testcapi now are marked as CPython only.
Serhiy Storchaka
2014-02-07
1
-2/+4
|
\
|
*
Issue #20532: Tests which use _testcapi now are marked as CPython only.
Serhiy Storchaka
2014-02-07
1
-1/+2
[next]