We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
__all__
1 parent 14b67a9 commit 1361989Copy full SHA for 1361989
1 file changed
stubs/aiofiles/aiofiles/os.pyi
@@ -11,7 +11,6 @@ from aiofiles.ospath import wrap as wrap
11
__all__ = [
12
"path",
13
"stat",
14
- "statvfs",
15
"rename",
16
"renames",
17
"replace",
@@ -27,10 +26,12 @@ __all__ = [
27
26
"listdir",
28
"scandir",
29
"access",
30
- "sendfile",
31
"wrap",
32
]
33
+if sys.platform != "win32":
+ __all__ += ["statvfs", "sendfile"]
34
+
35
path = ospath
36
37
async def stat(
0 commit comments