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

View File

@@ -0,0 +1,23 @@
from django.db.models.base import Model
from typing import (
Any,
List,
Set,
Tuple,
Type,
Union,
)
def find_command(cmd: str, path: None = ..., pathext: None = ...) -> str: ...
def handle_extensions(extensions: List[str]) -> Set[str]: ...
def parse_apps_and_model_labels(
labels: List[str]
) -> Union[Tuple[Set[Type[Model]], Set[Any]], Tuple[Set[Any], Set[Any]]]: ...
def popen_wrapper(args: List[str], stdout_encoding: str = ...) -> Tuple[str, str, int]: ...