initial commit

This commit is contained in:
Maxim Kurnikov
2018-07-29 18:12:23 +03:00
commit a9f215bf64
311 changed files with 13433 additions and 0 deletions
@@ -0,0 +1,27 @@
from django.core.management.base import CommandParser
from typing import (
List,
Tuple,
Union,
)
def humanize(dirname: str) -> str: ...
class Command:
def add_arguments(self, parser: CommandParser) -> None: ...
def find_fixtures(self, fixture_label: str) -> List[Tuple[str, str, str]]: ...
@cached_property
def fixture_dirs(self) -> List[str]: ...
def handle(self, *fixture_labels, **options) -> None: ...
def load_label(self, fixture_label: str) -> None: ...
def loaddata(self, fixture_labels: Union[Tuple[str], Tuple[str, str]]) -> None: ...
def parse_name(
self,
fixture_name: str
) -> Union[Tuple[str, str, str], Tuple[str, str, None], Tuple[str, None, None]]: ...
class SingleZipReader:
def read(self) -> bytes: ...