We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2609fa3 commit 7732a6fCopy full SHA for 7732a6f
1 file changed
stdlib/asyncio/unix_events.pyi
@@ -60,7 +60,9 @@ if sys.platform != "win32":
60
class BaseChildWatcher(AbstractChildWatcher, metaclass=ABCMeta):
61
def __init__(self) -> None: ...
62
def close(self) -> None: ...
63
- def is_active(self) -> bool: ...
+ if sys.version_info >= (3, 8):
64
+ def is_active(self) -> bool: ...
65
+
66
def attach_loop(self, loop: AbstractEventLoop | None) -> None: ...
67
68
class SafeChildWatcher(BaseChildWatcher):
0 commit comments