mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-16 00:37:10 +08:00
Bump tabulate to 0.9 version (#8865)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
version = "0.8.*"
|
||||
version = "0.9.*"
|
||||
|
||||
[tool.stubtest]
|
||||
ignore_missing_stub = false
|
||||
|
||||
@@ -2,6 +2,8 @@ from collections.abc import Callable, Container, Iterable, Mapping, Sequence
|
||||
from typing import Any, NamedTuple
|
||||
from typing_extensions import TypeAlias
|
||||
|
||||
__version__: str
|
||||
|
||||
LATEX_ESCAPE_RULES: dict[str, str]
|
||||
MIN_PADDING: int
|
||||
PRESERVE_WHITESPACE: bool
|
||||
@@ -39,6 +41,7 @@ def tabulate(
|
||||
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] = ...,
|
||||
@@ -46,4 +49,6 @@ def tabulate(
|
||||
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 = ...,
|
||||
) -> str: ...
|
||||
3
stubs/tabulate/tabulate/version.pyi
Normal file
3
stubs/tabulate/tabulate/version.pyi
Normal file
@@ -0,0 +1,3 @@
|
||||
version: str
|
||||
version_tuple: tuple[int, int, int]
|
||||
__version_tuple__: tuple[int, int, int]
|
||||
Reference in New Issue
Block a user