Skip to content

Commit a577f1e

Browse files
author
Tim Peters
committed
Changed a comment to end grammar bikeshedding ;-)
1 parent 367df12 commit a577f1e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/threading.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1061,7 +1061,7 @@ def join(self, timeout=None):
10611061
self._wait_for_tstate_lock()
10621062
else:
10631063
# the behavior of a negative timeout isn't documented, but
1064-
# historically .join() has acted as if timeout=0 then
1064+
# historically .join(timeout=x) for x<0 has acted as if timeout=0
10651065
self._wait_for_tstate_lock(timeout=max(timeout, 0))
10661066

10671067
def _wait_for_tstate_lock(self, block=True, timeout=-1):

0 commit comments

Comments
 (0)