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 fe50015 commit d737fd0Copy full SHA for d737fd0
src/trio/_subprocess_platform/kqueue.py
@@ -17,7 +17,7 @@ async def wait_child_exiting(process: _subprocess.Process) -> None:
17
# pypy doesn't define KQ_NOTE_EXIT:
18
# https://bitbucket.org/pypy/pypy/issues/2921/
19
# I verified this value against both Darwin and FreeBSD
20
- KQ_NOTE_EXIT = 0x80000000
+ KQ_NOTE_EXIT = 0x80000000 # type: ignore[misc]
21
22
def make_event(flags: int) -> select.kevent:
23
return select.kevent(
0 commit comments