Add stubs for tabulate (#2384)

This commit is contained in:
Andrew Gaul
2018-12-18 03:16:25 +09:00
committed by Sebastian Rittau
parent 0956a24eb2
commit 6206c5a9d3

18
third_party/2and3/tabulate.pyi vendored Normal file
View File

@@ -0,0 +1,18 @@
# Stub for tabulate: https://bitbucket.org/astanin/python-tabulate
from typing import Any, Dict, Iterable, Sequence, Union
def __getattr__(name: str) -> Any: ...
def tabulate(
tabular_data: Iterable[Iterable[Any]],
headers: Union[str, Dict[str, str], Sequence[str]] = ...,
tablefmt: str = ...,
floatfmt: str = ...,
numalign: str = ...,
stralign: str = ...,
missingval: str = ...,
showindex: str = ...,
disable_numparse: bool = ...
) -> str:
...