Changed a comment to end grammar bikeshedding ;-)

This commit is contained in:
Tim Peters 2013-10-26 11:56:16 -05:00
parent 367df12044
commit a577f1e0f1
1 changed files with 1 additions and 1 deletions

View File

@ -1061,7 +1061,7 @@ class Thread:
self._wait_for_tstate_lock()
else:
# 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))
def _wait_for_tstate_lock(self, block=True, timeout=-1):