summaryrefslogtreecommitdiffstats
path: root/Lib/dummy_thread.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove imports of 'warnings' that are no longer needed in dummy_thread,Brett Cannon2008-08-171-1/+0
| | | | filecmp, and shelve.
* dummy_thread.acquire() would return None if no waitflag argument was given. ItBrett Cannon2008-07-131-6/+3
| | | | | | | should have returned True. Fixes issue #3339. Thanks, Henk Punt for the report and Andrii v. Mishkovskiyi for attempting a patch.
* Remove specific mention of my name and email address from modules. Not reallyBrett Cannon2007-01-251-5/+2
| | | | | needed and all bug reports should go to the bug tracker, not directly to me. Plus I am not the only person to have edited these files at this point.
* fix exception usageAndrew MacIntyre2006-06-131-2/+1
|
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-131-0/+8
| | | | | | | | | | Heavily revised, comprising revisions: 46640 - original trunk revision (backed out in r46655) 46647 - markup fix (backed out in r46655) 46692:46918 merged from branch aimacintyre-sf1454481 branch tested on buildbots (Windows buildbots had problems not related to these changes).
* Revert revisions:Tim Peters2006-06-041-8/+0
| | | | | | | | | | | | | | | | 46640 Patch #1454481: Make thread stack size runtime tunable. 46647 Markup fix The first is causing many buildbots to fail test runs, and there are multiple causes with seemingly no immediate prospects for repairing them. See python-dev discussion. Note that a branch can (and should) be created for resolving these problems, like svn copy svn+ssh://svn.python.org/python/trunk -r46640 svn+ssh://svn.python.org/python/branches/NEW_BRANCH followed by merging rev 46647 to the new branch.
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-041-0/+8
|
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-3/+0
| | | | | | | | discussion. There are two places of documentation that still mention __context__: Doc/lib/libstdtypes.tex -- I wasn't quite sure how to rewrite that without spending a whole lot of time thinking about it; and whatsnew, which Andrew usually likes to change himself.
* dummy_thread needs to support PEP 343 too.Phillip J. Eby2006-03-271-0/+8
|
* Cause calling interrupt_main in main thread raise KeyboardInterrupt instantly.Brett Cannon2003-06-131-4/+12
|
* dummy_thread modified to have interrupt_main and to behave appropriately whenBrett Cannon2003-06-131-1/+17
| | | | | | | called. Added announcement in Misc/NEWS for thread.interrupt_main and mention of dummy_thread's change.
* Whitespace normalization.Tim Peters2003-01-291-5/+5
|
* Brett Cannon's dummy_thread and dummy_threading modules (SF patchGuido van Rossum2002-12-301-0/+116
622537), with some nitpicking editorial changes.