Kaydet (Commit) a577f1e0 authored tarafından Tim Peters's avatar Tim Peters

Changed a comment to end grammar bikeshedding ;-)

üst 367df120
...@@ -1061,7 +1061,7 @@ class Thread: ...@@ -1061,7 +1061,7 @@ class Thread:
self._wait_for_tstate_lock() self._wait_for_tstate_lock()
else: else:
# the behavior of a negative timeout isn't documented, but # the behavior of a negative timeout isn't documented, but
# historically .join() has acted as if timeout=0 then # historically .join(timeout=x) for x<0 has acted as if timeout=0
self._wait_for_tstate_lock(timeout=max(timeout, 0)) self._wait_for_tstate_lock(timeout=max(timeout, 0))
def _wait_for_tstate_lock(self, block=True, timeout=-1): def _wait_for_tstate_lock(self, block=True, timeout=-1):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment