Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 887971a commit a90d5e9Copy full SHA for a90d5e9
lib/matplotlib/cbook.pyi
@@ -72,6 +72,7 @@ def open_file_cm(
72
encoding: str | None = ...,
73
) -> contextlib.AbstractContextManager[IO]: ...
74
def is_scalar_or_string(val: Any) -> bool: ...
75
+def duplicate_if_scalar(obj: Any, n: int, raises: bool) -> list: ...
76
@overload
77
def get_sample_data(
78
fname: str | os.PathLike, asfileobj: Literal[True] = ..., *, np_load: Literal[True]
@@ -91,6 +92,7 @@ def _get_data_path(*args: Path | str) -> Path: ...
91
92
def flatten(
93
seq: Iterable[Any], scalarp: Callable[[Any], bool] = ...
94
) -> Generator[Any, None, None]: ...
95
+def pairwise(iterable: Iterable[Any]) -> Iterable[Any]: ...
96
97
class Stack(Generic[_T]):
98
def __init__(self, default: _T | None = ...) -> None: ...
0 commit comments