[Python-checkins] cpython: Changed a comment to end grammar bikeshedding ;-)

tim.peters python-checkins at python.org
Sat Oct 26 18:56:29 CEST 2013


http://hg.python.org/cpython/rev/86a855ee0456
changeset:   86659:86a855ee0456
user:        Tim Peters <tim at python.org>
date:        Sat Oct 26 11:56:16 2013 -0500
summary:
  Changed a comment to end grammar bikeshedding ;-)

files:
  Lib/threading.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/threading.py b/Lib/threading.py
--- a/Lib/threading.py
+++ b/Lib/threading.py
@@ -1061,7 +1061,7 @@
             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):

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list