Skip to content

Commit 9ee4582

Browse files
PrajwalM2212srittau
authored andcommitted
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
1 parent e3a79d0 commit 9ee4582

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

stdlib/2and3/threading.pyi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,7 @@ class Thread:
6969
def getName(self) -> str: ...
7070
def setName(self, name: str) -> None: ...
7171
def is_alive(self) -> bool: ...
72-
if sys.version_info < (3,):
73-
def isAlive(self) -> bool: ...
72+
def isAlive(self) -> bool: ...
7473
def isDaemon(self) -> bool: ...
7574
def setDaemon(self, daemonic: bool) -> None: ...
7675

0 commit comments

Comments
 (0)