merge with stubgen output

This commit is contained in:
Maxim Kurnikov
2018-07-29 23:25:20 +03:00
parent 496a6274e7
commit 4866354600
294 changed files with 10234 additions and 10842 deletions
+16 -14
View File
@@ -1,22 +1,24 @@
# Stubs for django.template.utils (Python 3.6)
#
# NOTE: This dynamically typed stub was automatically generated by stubgen.
from django.core.exceptions import ImproperlyConfigured
from typing import Any, Optional
from collections import OrderedDict
from django.template.backends.base import BaseEngine
from django.template.backends.django import DjangoTemplates
from django.template.backends.dummy import TemplateStrings
from typing import (
List,
Tuple,
Union,
)
def get_app_template_dirs(dirname: str) -> Tuple: ...
from typing import List, Tuple, Union
class InvalidTemplateEngineError(ImproperlyConfigured): ...
class EngineHandler:
_templates: Any = ...
_engines: Any = ...
def __init__(self, templates: Optional[Any] = ...) -> None: ...
def templates(self) -> OrderedDict: ...
def __getitem__(self, alias: str) -> BaseEngine: ...
def __iter__(self): ...
def all(
self
) -> Union[List[BaseEngine], List[TemplateStrings], List[DjangoTemplates]]: ...
@cached_property
def templates(self) -> OrderedDict: ...
def all(self) -> Union[List[BaseEngine], List[TemplateStrings], List[DjangoTemplates]]: ...
def get_app_template_dirs(dirname: str) -> Tuple: ...