6 lines
136 B
Python
6 lines
136 B
Python
"""Utilities for asyncio-friendly file handling."""
|
|
from .threadpool import open
|
|
from . import tempfile
|
|
|
|
__all__ = ["open", "tempfile"]
|