mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Remove stray semicolon
This commit is contained in:
parent
f93d3dfc50
commit
1095907624
1 changed files with 1 additions and 1 deletions
|
@ -1143,7 +1143,7 @@ class Thread:
|
|||
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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue