From: Tim Peters Date: Sat, 26 Oct 2013 16:56:16 +0000 (-0500) Subject: Changed a comment to end grammar bikeshedding ;-) X-Git-Tag: v3.4.0b1~520 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a577f1e0f15ca23e2916022009843b4c16ce5c96;p=thirdparty%2FPython%2Fcpython.git Changed a comment to end grammar bikeshedding ;-) --- diff --git a/Lib/threading.py b/Lib/threading.py index 5d454b6e383f..d907c89f3fce 100644 --- a/Lib/threading.py +++ b/Lib/threading.py @@ -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):