mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
25 lines
558 B
Python
25 lines
558 B
Python
from typing import Any, Optional
|
|
|
|
|
|
class FileProxyMixin:
|
|
encoding: Any = ...
|
|
fileno: Any = ...
|
|
flush: Any = ...
|
|
isatty: Any = ...
|
|
newlines: Any = ...
|
|
read: Any = ...
|
|
readinto: Any = ...
|
|
readline: Any = ...
|
|
readlines: Any = ...
|
|
seek: Any = ...
|
|
tell: Any = ...
|
|
truncate: Any = ...
|
|
write: Any = ...
|
|
writelines: Any = ...
|
|
@property
|
|
def closed(self) -> bool: ...
|
|
def readable(self) -> bool: ...
|
|
def writable(self) -> bool: ...
|
|
def seekable(self) -> bool: ...
|
|
def __iter__(self): ...
|