You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
"""Utilities for asyncio-friendly file handling.""" |
|
from .threadpool import ( |
|
open, |
|
stdin, |
|
stdout, |
|
stderr, |
|
stdin_bytes, |
|
stdout_bytes, |
|
stderr_bytes, |
|
) |
|
from . import tempfile |
|
|
|
__all__ = [ |
|
"open", |
|
"tempfile", |
|
"stdin", |
|
"stdout", |
|
"stderr", |
|
"stdin_bytes", |
|
"stdout_bytes", |
|
"stderr_bytes", |
|
]
|
|
|