Files
django-stubs/django/db/models/base.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

18 lines
497 B
Python

from typing import (
Any,
Dict,
List,
)
class Model:
def __eq__(self, other: object) -> bool: ...
def __getstate__(self) -> Dict[str, Any]: ...
def __hash__(self) -> int: ...
def __init__(self, *args, **kwargs) -> None: ...
def __reduce__(self) -> Any: ...
def __repr__(self) -> str: ...
def __setstate__(self, state: Dict[str, Any]) -> None: ...
def __str__(self) -> str: ...
@classmethod
def _check_column_name_clashes(cls) -> List[Any]: ...