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 3be7918 commit 3deb436Copy full SHA for 3deb436
1 file changed
trio_asyncio/loop.py
@@ -128,7 +128,8 @@ def set_child_watcher(self, watcher):
128
super().set_child_watcher(watcher)
129
130
131
-class TrioChildWatcher(asyncio.AbstractChildWatcher):
+class TrioChildWatcher: # (asyncio.AbstractChildWatcher):
132
+ # AbstractChildWatcher not available under Windows
133
def __init__(self):
134
super().__init__()
135
self._callbacks = {} # pid => handler
0 commit comments