summaryrefslogtreecommitdiff
path: root/Lib/threading.py
Commit message (Expand)AuthorAgeFilesLines
* Backport of r66275/r66274 from trunk/py3k. This is the last bit ofGregory P. Smith2008-09-071-2/+5
* Backport of r65032 from trunkGregory P. Smith2008-08-171-0/+34
* Backport of r60190:Gregory P. Smith2008-01-221-4/+10
* Backport r57216 (see issue #1731).Guido van Rossum2008-01-041-13/+45
* Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,Martin v. Löwis2007-01-041-5/+5
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-131-1/+3
* Revert revisions:Tim Peters2006-06-041-3/+1
* Patch #1454481: Make thread stack size runtime tunable.Andrew MacIntyre2006-06-041-1/+3
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-8/+5
* Implement MvL's improvement on __context__ in Condition;Guido van Rossum2006-04-251-5/+1
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-6/+0
* Updates to the with-statement:Guido van Rossum2006-02-281-0/+29
* Prevent threading.Thread.join() from blocking when a previous call raised anBrett Cannon2005-11-231-16/+18
* bug [ 1238170 ] threading.Thread uses {} as default argumentGeorg Brandl2005-07-151-1/+3
* Fixed typo in verbose output.Brett Cannon2005-01-271-1/+1
* threading._DummyThread.__init__(): document obscure new code.Tim Peters2005-01-081-3/+9
* In _DummyThread objects the lock stored in __block (allocated thanks toBrett Cannon2005-01-081-0/+1
* Thread.__delete: Discussion of internal obscurities belongs in commentsTim Peters2004-07-211-31/+28
* Fix bug where a KeyError was raised if -O was being used for the interpreterBrett Cannon2004-07-211-1/+33
* Implemented thread-local data as proposed on python-dev:Jim Fulton2004-07-141-1/+9
* threading.Thread objects will now print a traceback for an exception raisedBrett Cannon2004-07-031-2/+38
* Remove calls to currentThread() in _Condition methods that were side-effect.Brett Cannon2004-03-081-2/+0
* * Move collections.deque() in from the sandboxRaymond Hettinger2004-01-291-2/+3
* Add traceback.format_exc().Neil Schemenauer2003-11-051-5/+2
* Make the classes exposed by threading.py new-style classes. This isTim Peters2003-07-011-3/+7
* Resolved minor XXX question in the obvious way.Tim Peters2003-07-011-1/+1
* Whitespace normalization.Tim Peters2003-06-291-2/+2
* Remove stub settrace() and setprofile() calls.Jeremy Hylton2003-06-291-8/+0
* Add settrace() and setprofile() functions to the threading library.Jeremy Hylton2003-06-291-0/+20
* Provide dummy (do-nothing) settrace() and setprofile() functions untilTim Peters2003-06-291-1/+9
* Get rid of many apply() calls.Guido van Rossum2003-02-271-6/+6
* - prefer "import ... as" to "import / (assignments) / del" for most thingsFred Drake2002-12-301-18/+11
* Add __all__. (Brett Cannon.)Guido van Rossum2002-12-301-0/+2
* The _Event class should be more careful with releasing its lock whenGuido van Rossum2002-11-211-8/+14
* Docstring nits: The module is neither proposed nor new.Jeremy Hylton2002-08-141-1/+1
* Explain use of currentThread() in _Condition methods.Jeremy Hylton2002-08-141-2/+2
* Explain a little more.Jeremy Hylton2002-08-141-0/+1
* Explain a minor mystery.Jeremy Hylton2002-08-141-0/+1
* Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)Raymond Hettinger2002-06-301-2/+1
* Partial introduction of bools where appropriate.Guido van Rossum2002-04-071-19/+19
* Convert a pile of obvious "yes/no" functions to return bool.Tim Peters2002-04-041-2/+2
* SF #515023. Make _DummyThread.join() signature match base class (Thread)Neal Norwitz2002-02-191-1/+1
* Thread.__bootstrap(): ignore exceptions in the self.__delete() call inGuido van Rossum2001-12-281-1/+4
* Whitespace normalization.Tim Peters2001-09-181-4/+4
* Patch #428326: New class threading.Timer.Martin v. Löwis2001-09-051-1/+30
* Added new BoundedSemaphore class. Closes bug 452836.Skip Montanaro2001-08-201-0/+15
* of course I muffed it separating the notes code from the initial_valueSkip Montanaro2001-08-191-4/+4
* add debug calls to self._note for the Semaphore class. This closes bugSkip Montanaro2001-08-191-0/+9
* Remove unused imports (PyChecker)Andrew M. Kuchling2001-08-131-4/+0
* _Condition.wait(): never sleep longer than the timeout time remaining,Tim Peters2001-08-121-4/+11