mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 13:34:58 +08:00
Add defaults for third-party stubs Q-T (#9959)
This commit is contained in:
@@ -45,19 +45,19 @@ multiline_formats: dict[str, str]
|
||||
def simple_separated_format(separator: str) -> TableFormat: ...
|
||||
def tabulate(
|
||||
tabular_data: Mapping[str, Iterable[Any]] | Iterable[Iterable[Any]],
|
||||
headers: str | dict[str, str] | Sequence[str] = ...,
|
||||
tablefmt: str | TableFormat = ...,
|
||||
floatfmt: str | Iterable[str] = ...,
|
||||
intfmt: str | Iterable[str] = ...,
|
||||
numalign: str | None = ...,
|
||||
stralign: str | None = ...,
|
||||
missingval: str | Iterable[str] = ...,
|
||||
showindex: str | bool | Iterable[Any] = ...,
|
||||
disable_numparse: bool | Iterable[int] = ...,
|
||||
colalign: Iterable[str | None] | None = ...,
|
||||
maxcolwidths: int | Iterable[int | None] | None = ...,
|
||||
rowalign: str | Iterable[str] | None = ...,
|
||||
maxheadercolwidths: int | Iterable[int] | None = ...,
|
||||
headers: str | dict[str, str] | Sequence[str] = (),
|
||||
tablefmt: str | TableFormat = "simple",
|
||||
floatfmt: str | Iterable[str] = "g",
|
||||
intfmt: str | Iterable[str] = "",
|
||||
numalign: str | None = "default",
|
||||
stralign: str | None = "default",
|
||||
missingval: str | Iterable[str] = "",
|
||||
showindex: str | bool | Iterable[Any] = "default",
|
||||
disable_numparse: bool | Iterable[int] = False,
|
||||
colalign: Iterable[str | None] | None = None,
|
||||
maxcolwidths: int | Iterable[int | None] | None = None,
|
||||
rowalign: str | Iterable[str] | None = None,
|
||||
maxheadercolwidths: int | Iterable[int] | None = None,
|
||||
) -> str: ...
|
||||
|
||||
class JupyterHTMLStr(str):
|
||||
|
||||
Reference in New Issue
Block a user