summaryrefslogtreecommitdiffstats
path: root/Lib/threading.py
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 70712,70714,70764-70765,70769-70771,70773,70776-70777,70788-...Benjamin Peterson2009-04-051-22/+20
* Issue #874900: fix behaviour of threading module after a fork.Antoine Pitrou2008-09-061-3/+6
* remove the deprecation warnings for the old threading API; update the docsBenjamin Peterson2008-09-011-24/+17
* add full deprecation warnings for old threading APIsBenjamin Peterson2008-08-181-0/+28
* Merged revisions 65826 via svnmerge fromBenjamin Peterson2008-08-181-0/+12
* change is_daemon, set_daemon, get_name, and set_name to propertiesBenjamin Peterson2008-08-181-12/+16
* Merged revisions 65818 via svnmerge fromBenjamin Peterson2008-08-181-1/+2
* Merger 65032 to py3kJesse Noller2008-07-171-0/+31
* fix more threading API related bugsBenjamin Peterson2008-06-131-1/+1
* Merged revisions 64125 via svnmerge fromBenjamin Peterson2008-06-111-35/+35
* Merged revisions 63829-63831,63858,63865,63879,63882,63948,63970-63972,63976,...Georg Brandl2008-06-101-3/+11
* Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875.Georg Brandl2008-05-251-18/+13
* Merged revisions 61440-61441,61443,61445-61448,61451-61452,61455-61457,61459-...Neal Norwitz2008-04-051-7/+8
* Merged revisions 61981,61984-61987,61992-61993,61997-62000 via svnmerge fromChristian Heimes2008-03-281-0/+10
* Merged revisions 61038,61042-61045,61047,61050,61053,61055-61056,61061-61062,...Christian Heimes2008-02-281-19/+20
* Merged revisions 61003-61033 via svnmerge fromChristian Heimes2008-02-241-2/+7
* Merged revisions 60245-60277 via svnmerge fromChristian Heimes2008-01-251-8/+25
* Merged revisions 60176-60209 via svnmerge fromChristian Heimes2008-01-231-29/+16
* Raise statement normalization in Lib/.Collin Winter2007-08-301-1/+1
* Get rid of all __private variables and methods in the threading module.Guido van Rossum2007-08-201-131/+131
* Merged revisions 57152-57220 via svnmerge fromGuido van Rossum2007-08-201-0/+20
* Merged revisions 56753-56781 via svnmerge fromGuido van Rossum2007-08-061-1/+2
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-12/+23
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-3/+2
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-1/+1
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-8/+8
* Merged revisions 53005-53303 via svnmerge fromThomas Wouters2007-01-091-5/+5
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-1/+3
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-11/+4
* 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