Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython2
/
d47a68716e7dfdf79a19129a9a8369b41a173f27
/
Lib
/
threading.py
b02b311
Fix Issue8262 - changing RuntimeError wording to "Threads can only be started once"
by Senthil Kumaran
· 15 years ago
613c7a5
Issue #7481: When a threading.Thread failed to start it would leave the
by Gregory P. Smith
· 15 years ago
84fedf7
No need to assign the results of expressions used only for side effects.
by Georg Brandl
· 15 years ago
d7158d4
Issue #7282: Fix a memory leak when an RLock was used in a thread other
by Antoine Pitrou
· 16 years ago
99c160b
Issue #7264: Fix a possible deadlock when deallocating thread-local objects
by Antoine Pitrou
· 16 years ago
e1254d7
#7125: fix typo.
by Georg Brandl
· 16 years ago
d906ea6
fix Thread.ident when it is the main thread or a dummy thread #5632
by Benjamin Peterson
· 16 years ago
bd9dd31
take the usual lock precautions around _active_limbo_lock
by Benjamin Peterson
· 16 years ago
ef660e8
#1674032: return value of flag from Event.wait(). OKed by Guido.
by Georg Brandl
· 16 years ago
9fb1aca
Backport relevant part of r66274 (in issue #874900).
by Antoine Pitrou
· 17 years ago
973e6c2
remove py3k warnings about the threading api; update docs
by Benjamin Peterson
· 17 years ago
b6a9556
fix a few get_name() calls and turn then to .name
by Benjamin Peterson
· 17 years ago
6ee1a31
add py3k warnings for old threading APIs
by Benjamin Peterson
· 17 years ago
d810626
bring back the old API
by Benjamin Peterson
· 17 years ago
cbae869
backport threading property changes
by Benjamin Peterson
· 17 years ago
d8a8972
change threading.getIdent to a property
by Benjamin Peterson
· 17 years ago
2005050
Remove a tuple unpacking in a parameter list to suppress the SyntaxWarning with
by Brett Cannon
· 17 years ago
5e62ca4
Apply patch for 874900: threading module can deadlock after fork
by Jesse Noller
· 17 years ago
13f7382
add old names back into __all__
by Benjamin Peterson
· 17 years ago
f439560
add aliases to threading module
by Benjamin Peterson
· 17 years ago
0fbcf69
give the threading API PEP 8 names
by Benjamin Peterson
· 17 years ago
8856dda
Adds a Thread.getIdent() method to provide the _get_ident() value for
by Gregory P. Smith
· 17 years ago
d7a2651
#1733757: the interpreter would hang on shutdown, if the function set by sys.settrace
by Amaury Forgeot d'Arc
· 17 years ago
105f3d4
Block the sys.exc_clear -3 warning from threading.py.
by Jeffrey Yasskin
· 17 years ago
504a48f
Revert my experiment. I found one reason of failures in test_logging.
by Amaury Forgeot d'Arc
· 17 years ago
554d4f0
At least let the module compile
by Amaury Forgeot d'Arc
· 17 years ago
8a69707
Try to understand why most buildbots suddenly turned to red.
by Amaury Forgeot d'Arc
· 17 years ago
8b9091f
Kill a race in test_threading in which the exception info in a thread finishing
by Jeffrey Yasskin
· 17 years ago
69e1309
Thread.start() used sleep(0.000001) to make sure it didn't return before the
by Jeffrey Yasskin
· 17 years ago
a885c15
Followup to r61011: Also avoid the reference cycle when the Thread's target
by Jeffrey Yasskin
· 17 years ago
3414ea9
Prevent classes like:
by Jeffrey Yasskin
· 17 years ago
70ec29d
Revert 60189 and restore performance.
by Raymond Hettinger
· 17 years ago
95cd5c0
- Fix Issue #1703448: A joined thread could show up in the
by Gregory P. Smith
· 17 years ago
64c5677
Replace spam.acquire() try: ... finally: spam.release() with "with spam:"
by Gregory P. Smith
· 17 years ago
54ec61e
Add a hack (originally devised in a slightly different form by Thomas Wouters)
by Guido van Rossum
· 18 years ago
f8bbaa9
Eliminate RLock race condition reported in SF bug #1764059
by Nick Coghlan
· 18 years ago
50b79ce
Patch #1731049: make threading.py use a proper "raise" when checking internal state, rather than assert statements (which get stripped out by -O).
by Collin Winter
· 18 years ago
7b7c9d4
Bug #1566280: Explicitly invoke threading._shutdown from Py_Main,
by Martin v. Löwis
· 18 years ago
9291332
Patch #1454481: Make thread stack size runtime tunable.
by Andrew MacIntyre
· 19 years ago
28eeefe
Revert revisions:
by Tim Peters
· 19 years ago
6539d2d
Patch #1454481: Make thread stack size runtime tunable.
by Andrew MacIntyre
· 19 years ago
da5b701
Get rid of __context__, per the latest changes to PEP 343 and python-dev
by Guido van Rossum
· 19 years ago
8f56d02
Implement MvL's improvement on __context__ in Condition;
by Guido van Rossum
· 19 years ago
f669436
Um, I thought I'd already checked this in.
by Guido van Rossum
· 19 years ago
1a5e21e
Updates to the with-statement:
by Guido van Rossum
· 19 years ago
ad07ff2
Prevent threading.Thread.join() from blocking when a previous call raised an
by Brett Cannon
· 19 years ago
a4a8b82
bug [ 1238170 ] threading.Thread uses {} as default argument
by Georg Brandl
· 20 years ago
90cece7
Fixed typo in verbose output.
by Brett Cannon
· 20 years ago
711906e
threading._DummyThread.__init__(): document obscure new code.
by Tim Peters
· 20 years ago
e6539c4
In _DummyThread objects the lock stored in __block (allocated thanks to
by Brett Cannon
· 20 years ago
2142993
Thread.__delete: Discussion of internal obscurities belongs in comments
by Tim Peters
· 21 years ago
8b3d92a
Fix bug where a KeyError was raised if -O was being used for the interpreter
by Brett Cannon
· 21 years ago
d15dc06
Implemented thread-local data as proposed on python-dev:
by Jim Fulton
· 21 years ago
cc4e935
threading.Thread objects will now print a traceback for an exception raised
by Brett Cannon
· 21 years ago
4b6b7f1
Remove calls to currentThread() in _Condition methods that were side-effect.
by Brett Cannon
· 21 years ago
756b3f3
* Move collections.deque() in from the sandbox
by Raymond Hettinger
· 21 years ago
f607fc5
Add traceback.format_exc().
by Neil Schemenauer
· 22 years ago
59aba12
Make the classes exposed by threading.py new-style classes. This is
by Tim Peters
· 22 years ago
0939fac
Resolved minor XXX question in the obvious way.
by Tim Peters
· 22 years ago
d1b108b
Whitespace normalization.
by Tim Peters
· 22 years ago
89392c0
Remove stub settrace() and setprofile() calls.
by Jeremy Hylton
· 22 years ago
bfccb35
Add settrace() and setprofile() functions to the threading library.
by Jeremy Hylton
· 22 years ago
685e697
Provide dummy (do-nothing) settrace() and setprofile() functions until
by Tim Peters
· 22 years ago
68468eb
Get rid of many apply() calls.
by Guido van Rossum
· 22 years ago
a872595
- prefer "import ... as" to "import / (assignments) / del" for most things
by Fred Drake
· 22 years ago
c262a1f
Add __all__. (Brett Cannon.)
by Guido van Rossum
· 22 years ago
21b6014
The _Event class should be more careful with releasing its lock when
by Guido van Rossum
· 22 years ago
92bb6e7
Docstring nits: The module is neither proposed nor new.
by Jeremy Hylton
· 23 years ago
29c2106
Explain use of currentThread() in _Condition methods.
by Jeremy Hylton
· 23 years ago
39c12bf
Explain a little more.
by Jeremy Hylton
· 23 years ago
af7fde7
Explain a minor mystery.
by Jeremy Hylton
· 23 years ago
46ac8eb
Code modernization. Replace v=s[i]; del s[i] with single lookup v=s.pop(i)
by Raymond Hettinger
· 23 years ago
8ca162f
Partial introduction of bools where appropriate.
by Guido van Rossum
· 23 years ago
bc0e910
Convert a pile of obvious "yes/no" functions to return bool.
by Tim Peters
· 23 years ago
45bec8c
SF #515023. Make _DummyThread.join() signature match base class (Thread)
by Neal Norwitz
· 23 years ago
f21b2aa
Thread.__bootstrap(): ignore exceptions in the self.__delete() call in
by Guido van Rossum
· 23 years ago
b64bec3
Whitespace normalization.
by Tim Peters
· 24 years ago
44f8696
Patch #428326: New class threading.Timer.
by Martin v. Löwis
· 24 years ago
e428bb7
Added new BoundedSemaphore class. Closes bug 452836.
by Skip Montanaro
· 24 years ago
ae8454a
of course I muffed it separating the notes code from the initial_value
by Skip Montanaro
· 24 years ago
b446fc7
add debug calls to self._note for the Semaphore class. This closes bug
by Skip Montanaro
· 24 years ago
a49e0a0
Remove unused imports (PyChecker)
by Andrew M. Kuchling
· 24 years ago
a6a4f27
_Condition.wait(): never sleep longer than the timeout time remaining,
by Tim Peters
· 24 years ago
c951bf9
SF bug [#410708] Condition.wait() and KeyboardInterrupt.
by Tim Peters
· 24 years ago
b90f89a
Whitespace normalization.
by Tim Peters
· 24 years ago
5080b33
Comment out a debugging print statement that triggered a complaint in c.l.py.
by Guido van Rossum
· 24 years ago
7b4fc17
Revise to use atexit instead of monkeying with sys.exitfunc directly.
by Fred Drake
· 25 years ago
b5fc749
patch from Charles Waldman--
by Jeremy Hylton
· 25 years ago
39d3bfc
Fix a typo in a comment
by Andrew M. Kuchling
· 25 years ago
e7b146f
The third and final doc-string sweep by Ka-Ping Yee.
by Guido van Rossum
· 25 years ago
8e7eaa8
Duncan Grisby noted a typo in _DummyThread.
by Guido van Rossum
· 26 years ago
5a43e1a
Get rid of tabnanny's last complaints.
by Guido van Rossum
· 27 years ago
b39e461
Two places where _time() should be used said time.time(), which
by Guido van Rossum
· 27 years ago
b26a1b4
Use random instead of whrandom.
by Guido van Rossum
· 27 years ago
7f5013a
New Java-style threading module. The doc strings are in a separate module.
by Guido van Rossum
· 27 years ago