run black over stubs, add checking to travis

This commit is contained in:
Maxim Kurnikov
2018-12-03 18:52:44 +03:00
parent d5bc7d4ab2
commit cf6119bf9b
420 changed files with 2295 additions and 8384 deletions

View File

@@ -2,51 +2,31 @@ from datetime import date, datetime, time
from decimal import Decimal
from typing import Any, Callable, Dict, Iterator, List, Optional, Tuple, Union
from django.db.backends.sqlite3.base import (DatabaseWrapper,
SQLiteCursorWrapper)
from django.db.backends.sqlite3.base import DatabaseWrapper, SQLiteCursorWrapper
logger: Any
class CursorWrapper:
cursor: django.db.backends.sqlite3.base.SQLiteCursorWrapper = ...
db: django.db.backends.sqlite3.base.DatabaseWrapper = ...
def __init__(
self, cursor: SQLiteCursorWrapper, db: DatabaseWrapper
) -> None: ...
def __init__(self, cursor: SQLiteCursorWrapper, db: DatabaseWrapper) -> None: ...
WRAP_ERROR_ATTRS: Any = ...
def __getattr__(
self, attr: str
) -> Union[
Callable, Tuple[Tuple[str, None, None, None, None, None, None]], int
]: ...
def __getattr__(self, attr: str) -> Union[Callable, Tuple[Tuple[str, None, None, None, None, None, None]], int]: ...
def __iter__(self) -> None: ...
def __enter__(self) -> CursorWrapper: ...
def __exit__(self, type: None, value: None, traceback: None) -> None: ...
def callproc(
self,
procname: str,
params: List[Any] = ...,
kparams: Dict[str, int] = ...,
) -> Any: ...
def callproc(self, procname: str, params: List[Any] = ..., kparams: Dict[str, int] = ...) -> Any: ...
def execute(
self,
sql: str,
params: Optional[
Union[List[bool], List[datetime], List[float], Tuple]
] = ...,
self, sql: str, params: Optional[Union[List[bool], List[datetime], List[float], Tuple]] = ...
) -> Optional[SQLiteCursorWrapper]: ...
def executemany(
self,
sql: str,
param_list: Union[Iterator[Any], List[Tuple[Union[int, str]]]],
self, sql: str, param_list: Union[Iterator[Any], List[Tuple[Union[int, str]]]]
) -> Optional[SQLiteCursorWrapper]: ...
class CursorDebugWrapper(CursorWrapper):
cursor: django.db.backends.sqlite3.base.SQLiteCursorWrapper
db: django.db.backends.sqlite3.base.DatabaseWrapper
def execute(
self, sql: str, params: Optional[Union[List[str], Tuple]] = ...
) -> Any: ...
def execute(self, sql: str, params: Optional[Union[List[str], Tuple]] = ...) -> Any: ...
def executemany(self, sql: str, param_list: Iterator[Any]) -> Any: ...
def typecast_date(s: Optional[str]) -> Optional[date]: ...
@@ -54,12 +34,6 @@ def typecast_time(s: Optional[str]) -> Optional[time]: ...
def typecast_timestamp(s: Optional[str]) -> Optional[date]: ...
def rev_typecast_decimal(d: Decimal) -> str: ...
def split_identifier(identifier: str) -> Tuple[str, str]: ...
def truncate_name(
identifier: str, length: Optional[int] = ..., hash_len: int = ...
) -> str: ...
def format_number(
value: Optional[Decimal],
max_digits: Optional[int],
decimal_places: Optional[int],
) -> Optional[str]: ...
def truncate_name(identifier: str, length: Optional[int] = ..., hash_len: int = ...) -> str: ...
def format_number(value: Optional[Decimal], max_digits: Optional[int], decimal_places: Optional[int]) -> Optional[str]: ...
def strip_quotes(table_name: str) -> str: ...