Files
typeshed/stdlib/3/contextlib.pyi
2015-09-30 09:59:44 -07:00

9 lines
147 B
Python

# Stubs for contextlib
# NOTE: These are incomplete!
from typing import Any
# TODO more precise type?
def contextmanager(func: Any) -> Any: ...