summaryrefslogtreecommitdiffstats
path: root/Lib/dummy_thread.py
Commit message (Collapse)AuthorAgeFilesLines
* 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.