Files
geMoldInsight/venv/lib/python3.11/site-packages/aiofiles/__init__.py
T

24 lines
345 B
Python
Raw Normal View History

2026-02-12 23:22:11 +08:00
"""Utilities for asyncio-friendly file handling."""
from . import tempfile
from .threadpool import (
open,
stderr,
stderr_bytes,
stdin,
stdin_bytes,
stdout,
stdout_bytes,
)
__all__ = [
"open",
"tempfile",
"stdin",
"stdout",
"stderr",
"stdin_bytes",
"stdout_bytes",
"stderr_bytes",
]