mirror of
https://github.com/python/cpython.git
synced 2025-09-28 03:13:48 +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:
|
if not self._initialized:
|
||||||
raise RuntimeError("Thread.__init__() not called")
|
raise RuntimeError("Thread.__init__() not called")
|
||||||
if self._started.is_set():
|
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
|
self._daemonic = daemonic
|
||||||
|
|
||||||
def isDaemon(self):
|
def isDaemon(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue