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

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


http://hg.python.org/cpython/rev/2684a7f7ecbd
changeset:   89813:2684a7f7ecbd
branch:      3.4
parent:      89811:a2fd7e452167
user:        Antoine Pitrou <solipsis at pitrou.net>
date:        Mon Mar 17 18:22:41 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