summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dummy_thread.py
Commit message (Collapse)AuthorAgeFilesLines
* dummy_thread.acquire() would return None if no waitflag argument was given. ItBrett Cannon2008-07-131-0/+1
| | | | | | | should have returned True. Fixes issue #3339. Thanks, Henk Punt for the report and Andrii v. Mishkovskiyi for attempting a patch.
* Queue renaming reversal part 3: move module into place andGeorg Brandl2008-05-251-3/+3
| | | | change imports and other references. Closes #2925.
* Added stub for the Queue module to be renamed in 3.0.Alexandre Vassalotti2008-05-111-3/+3
| | | | Use the 3.0 module name to avoid spurious warnings.
* Whitespace normalization.Tim Peters2003-06-151-1/+1
|
* Cause calling interrupt_main in main thread raise KeyboardInterrupt instantly.Brett Cannon2003-06-131-0/+5
|
* dummy_thread modified to have interrupt_main and to behave appropriately whenBrett Cannon2003-06-131-0/+8
| | | | | | | called. Added announcement in Misc/NEWS for thread.interrupt_main and mention of dummy_thread's change.
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-5/+1
| | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807.
* Make time.sleep calls go to 0 for common testing.Brett Cannon2003-04-301-10/+15
|
* Whitespace normalization.Tim Peters2003-02-191-5/+5
|
* Brett Cannon's dummy_thread and dummy_threading modules (SF patchGuido van Rossum2002-12-301-0/+167
622537), with some nitpicking editorial changes.