mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
11 lines
208 B
Python
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: ... |