improved version

This commit is contained in:
Maxim Kurnikov
2018-07-29 20:06:41 +03:00
parent c180555415
commit 89bb6eac75
160 changed files with 1007 additions and 607 deletions

View File

@@ -12,7 +12,7 @@ from typing import (
)
def flatatt(attrs: Dict[str, Union[str, None]]) -> SafeText: ...
def flatatt(attrs: Dict[str, Optional[str]]) -> SafeText: ...
def from_current_timezone(value: datetime) -> datetime: ...
@@ -33,11 +33,11 @@ class ErrorDict:
class ErrorList:
def __contains__(self, item: str) -> bool: ...
def __eq__(self, other: Union[List[str], ErrorList]) -> bool: ...
def __eq__(self, other: Union[ErrorList, List[str]]) -> bool: ...
def __getitem__(self, i: Union[str, int]) -> str: ...
def __init__(
self,
initlist: Optional[Union[List[ValidationError], ErrorList, List[str]]] = ...,
initlist: Optional[Union[ErrorList, List[str], List[ValidationError]]] = ...,
error_class: Optional[str] = ...
) -> None: ...
def __reduce_ex__(