From a577f1e0f15ca23e2916022009843b4c16ce5c96 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Sat, 26 Oct 2013 11:56:16 -0500 Subject: Changed a comment to end grammar bikeshedding ;-) --- Lib/threading.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/threading.py b/Lib/threading.py index 5d454b6..d907c89 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): -- cgit v0.12