]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Changed a comment to end grammar bikeshedding ;-)
authorTim Peters <tim@python.org>
Sat, 26 Oct 2013 16:56:16 +0000 (11:56 -0500)
committerTim Peters <tim@python.org>
Sat, 26 Oct 2013 16:56:16 +0000 (11:56 -0500)
Lib/threading.py

index 5d454b6e383f85fd2e5879ba94ed01e292dcd313..d907c89f3fceecfb0f7bb18a98b7f8d1ab2b1904 100644 (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):