mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 05:24:53 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
24
django-stubs-generated/core/files/utils.pyi
Normal file
24
django-stubs-generated/core/files/utils.pyi
Normal file
@@ -0,0 +1,24 @@
|
||||
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): ...
|
||||
Reference in New Issue
Block a user