index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
threading.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
give the threading API PEP 8 names
Benjamin Peterson
2008-06-11
1
-35/+35
*
Adds a Thread.getIdent() method to provide the _get_ident() value for
Gregory P. Smith
2008-06-01
1
-2/+10
*
#1733757: the interpreter would hang on shutdown, if the function set by sys....
Amaury Forgeot d'Arc
2008-04-03
1
-7/+8
*
Block the sys.exc_clear -3 warning from threading.py.
Jeffrey Yasskin
2008-03-31
1
-0/+7
*
Revert my experiment. I found one reason of failures in test_logging.
Amaury Forgeot d'Arc
2008-03-29
1
-3/+1
*
At least let the module compile
Amaury Forgeot d'Arc
2008-03-29
1
-0/+1
*
Try to understand why most buildbots suddenly turned to red.
Amaury Forgeot d'Arc
2008-03-29
1
-1/+2
*
Kill a race in test_threading in which the exception info in a thread finishing
Jeffrey Yasskin
2008-03-28
1
-0/+9
*
Thread.start() used sleep(0.000001) to make sure it didn't return before the
Jeffrey Yasskin
2008-02-28
1
-11/+10
*
Followup to r61011: Also avoid the reference cycle when the Thread's target
Jeffrey Yasskin
2008-02-23
1
-5/+7
*
Prevent classes like:
Jeffrey Yasskin
2008-02-23
1
-0/+3
*
Revert 60189 and restore performance.
Raymond Hettinger
2008-01-24
1
-8/+24
*
- Fix Issue #1703448: A joined thread could show up in the
Gregory P. Smith
2008-01-22
1
-5/+8
*
Replace spam.acquire() try: ... finally: spam.release() with "with spam:"
Gregory P. Smith
2008-01-22
1
-24/+8
*
Add a hack (originally devised in a slightly different form by Thomas Wouters)
Guido van Rossum
2007-08-20
1
-0/+20
*
Eliminate RLock race condition reported in SF bug #1764059
Nick Coghlan
2007-07-31
1
-1/+2
*
Patch #1731049: make threading.py use a proper "raise" when checking internal...
Collin Winter
2007-06-06
1
-12/+23
*
Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,
Martin v. Löwis
2007-01-04
1
-5/+5
*
Patch #1454481: Make thread stack size runtime tunable.
Andrew MacIntyre
2006-06-13
1
-1/+3
*
Revert revisions:
Tim Peters
2006-06-04
1
-3/+1
*
Patch #1454481: Make thread stack size runtime tunable.
Andrew MacIntyre
2006-06-04
1
-1/+3
*
Get rid of __context__, per the latest changes to PEP 343 and python-dev
Guido van Rossum
2006-05-02
1
-8/+5
*
Implement MvL's improvement on __context__ in Condition;
Guido van Rossum
2006-04-25
1
-5/+1
*
Um, I thought I'd already checked this in.
Guido van Rossum
2006-03-10
1
-6/+0
*
Updates to the with-statement:
Guido van Rossum
2006-02-28
1
-0/+29
*
Prevent threading.Thread.join() from blocking when a previous call raised an
Brett Cannon
2005-11-23
1
-16/+18
*
bug [ 1238170 ] threading.Thread uses {} as default argument
Georg Brandl
2005-07-15
1
-1/+3
*
Fixed typo in verbose output.
Brett Cannon
2005-01-27
1
-1/+1
*
threading._DummyThread.__init__(): document obscure new code.
Tim Peters
2005-01-08
1
-3/+9
*
In _DummyThread objects the lock stored in __block (allocated thanks to
Brett Cannon
2005-01-08
1
-0/+1
*
Thread.__delete: Discussion of internal obscurities belongs in comments
Tim Peters
2004-07-21
1
-31/+28
*
Fix bug where a KeyError was raised if -O was being used for the interpreter
Brett Cannon
2004-07-21
1
-1/+33
*
Implemented thread-local data as proposed on python-dev:
Jim Fulton
2004-07-14
1
-1/+9
*
threading.Thread objects will now print a traceback for an exception raised
Brett Cannon
2004-07-03
1
-2/+38
*
Remove calls to currentThread() in _Condition methods that were side-effect.
Brett Cannon
2004-03-08
1
-2/+0
*
* Move collections.deque() in from the sandbox
Raymond Hettinger
2004-01-29
1
-2/+3
*
Add traceback.format_exc().
Neil Schemenauer
2003-11-05
1
-5/+2
*
Make the classes exposed by threading.py new-style classes. This is
Tim Peters
2003-07-01
1
-3/+7
*
Resolved minor XXX question in the obvious way.
Tim Peters
2003-07-01
1
-1/+1
*
Whitespace normalization.
Tim Peters
2003-06-29
1
-2/+2
*
Remove stub settrace() and setprofile() calls.
Jeremy Hylton
2003-06-29
1
-8/+0
*
Add settrace() and setprofile() functions to the threading library.
Jeremy Hylton
2003-06-29
1
-0/+20
*
Provide dummy (do-nothing) settrace() and setprofile() functions until
Tim Peters
2003-06-29
1
-1/+9
*
Get rid of many apply() calls.
Guido van Rossum
2003-02-27
1
-6/+6
*
- prefer "import ... as" to "import / (assignments) / del" for most things
Fred Drake
2002-12-30
1
-18/+11
*
Add __all__. (Brett Cannon.)
Guido van Rossum
2002-12-30
1
-0/+2
*
The _Event class should be more careful with releasing its lock when
Guido van Rossum
2002-11-21
1
-8/+14
*
Docstring nits: The module is neither proposed nor new.
Jeremy Hylton
2002-08-14
1
-1/+1
*
Explain use of currentThread() in _Condition methods.
Jeremy Hylton
2002-08-14
1
-2/+2
*
Explain a little more.
Jeremy Hylton
2002-08-14
1
-0/+1
[next]