Skip to content

Commit 3deb436

Browse files
committed
no AbstractChildWatcher under Windows
1 parent 3be7918 commit 3deb436

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

trio_asyncio/loop.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ def set_child_watcher(self, watcher):
128128
super().set_child_watcher(watcher)
129129

130130

131-
class TrioChildWatcher(asyncio.AbstractChildWatcher):
131+
class TrioChildWatcher: # (asyncio.AbstractChildWatcher):
132+
# AbstractChildWatcher not available under Windows
132133
def __init__(self):
133134
super().__init__()
134135
self._callbacks = {} # pid => handler

0 commit comments

Comments
 (0)