[Python-checkins] cpython (merge 3.4 -> default): Remove stray semicolon

antoine.pitrou python-checkins at python.org
Mon Mar 17 18:23:23 CET 2014


http://hg.python.org/cpython/rev/84ac037540d5
changeset:   89814:84ac037540d5
parent:      89812:3a3a5467baa9
parent:      89813:2684a7f7ecbd
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Mon Mar 17 18:23:14 2014 +0100
summary:
  Remove stray semicolon

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
@@ -1143,7 +1143,7 @@
         if not self._initialized:
             raise RuntimeError("Thread.__init__() not called")
         if self._started.is_set():
-            raise RuntimeError("cannot set daemon status of active thread");
+            raise RuntimeError("cannot set daemon status of active thread")
         self._daemonic = daemonic
 
     def isDaemon(self):

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


More information about the Python-checkins mailing list