mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-10 05:51:52 +08:00
Remove version guard (#2565)
isAlive() is still present in threading.py in python 2.7, 3.4, 3.5, 3.6, 3.7. Closes #2552
This commit is contained in:
committed by
Sebastian Rittau
parent
e3a79d0ce6
commit
9ee458226c
@@ -69,8 +69,7 @@ class Thread:
|
||||
def getName(self) -> str: ...
|
||||
def setName(self, name: str) -> None: ...
|
||||
def is_alive(self) -> bool: ...
|
||||
if sys.version_info < (3,):
|
||||
def isAlive(self) -> bool: ...
|
||||
def isAlive(self) -> bool: ...
|
||||
def isDaemon(self) -> bool: ...
|
||||
def setDaemon(self, daemonic: bool) -> None: ...
|
||||
|
||||
|
||||
Reference in New Issue
Block a user