We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85a788d commit 258b9fbCopy full SHA for 258b9fb
stdlib/3/fcntl.pyi
@@ -1,6 +1,6 @@
1
# Stubs for fcntl
2
+from io import IOBase
3
from typing import Any, IO, Union
-import typing
4
5
FASYNC = ... # type: int
6
FD_CLOEXEC = ... # type: int
@@ -75,7 +75,7 @@ LOCK_SH = ... # type: int
75
LOCK_UN = ... # type: int
76
LOCK_WRITE = ... # type: int
77
78
-_AnyFile = Union[int, IO[Any]]
+_AnyFile = Union[int, IO[Any], IOBase]
79
80
# TODO All these return either int or bytes depending on the value of
81
# cmd (not on the type of arg).
0 commit comments