Files
django-stubs/django/core/files/locks.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

11 lines
208 B
Python

from io import BufferedRandom
from typing import Union
def _fd(f: Union[BufferedRandom, int]) -> int: ...
def lock(f: Union[BufferedRandom, int], flags: int) -> bool: ...
def unlock(f: int) -> bool: ...