123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- __all__ = [
- "__bibtex__",
- "__version__",
- "__version_info__",
- "set_loglevel",
- "ExecutableNotFoundError",
- "get_configdir",
- "get_cachedir",
- "get_data_path",
- "matplotlib_fname",
- "MatplotlibDeprecationWarning",
- "RcParams",
- "rc_params",
- "rc_params_from_file",
- "rcParamsDefault",
- "rcParams",
- "rcParamsOrig",
- "defaultParams",
- "rc",
- "rcdefaults",
- "rc_file_defaults",
- "rc_file",
- "rc_context",
- "use",
- "get_backend",
- "interactive",
- "is_interactive",
- "colormaps",
- "color_sequences",
- ]
- import os
- from pathlib import Path
- from collections.abc import Callable, Generator
- import contextlib
- from packaging.version import Version
- from matplotlib._api import MatplotlibDeprecationWarning
- from typing import Any, NamedTuple
- class _VersionInfo(NamedTuple):
- major: int
- minor: int
- micro: int
- releaselevel: str
- serial: int
- __bibtex__: str
- __version__: str
- __version_info__: _VersionInfo
- def set_loglevel(level: str) -> None: ...
- class _ExecInfo(NamedTuple):
- executable: str
- raw_version: str
- version: Version
- class ExecutableNotFoundError(FileNotFoundError): ...
- def _get_executable_info(name: str) -> _ExecInfo: ...
- def get_configdir() -> str: ...
- def get_cachedir() -> str: ...
- def get_data_path() -> str: ...
- def matplotlib_fname() -> str: ...
- class RcParams(dict[str, Any]):
- validate: dict[str, Callable]
- def __init__(self, *args, **kwargs) -> None: ...
- def __setitem__(self, key: str, val: Any) -> None: ...
- def __getitem__(self, key: str) -> Any: ...
- def __iter__(self) -> Generator[str, None, None]: ...
- def __len__(self) -> int: ...
- def find_all(self, pattern: str) -> RcParams: ...
- def copy(self) -> RcParams: ...
- def rc_params(fail_on_error: bool = ...) -> RcParams: ...
- def rc_params_from_file(
- fname: str | Path | os.PathLike,
- fail_on_error: bool = ...,
- use_default_template: bool = ...,
- ) -> RcParams: ...
- rcParamsDefault: RcParams
- rcParams: RcParams
- rcParamsOrig: RcParams
- defaultParams: dict[str, Any]
- def rc(group: str, **kwargs) -> None: ...
- def rcdefaults() -> None: ...
- def rc_file_defaults() -> None: ...
- def rc_file(
- fname: str | Path | os.PathLike, *, use_default_template: bool = ...
- ) -> None: ...
- @contextlib.contextmanager
- def rc_context(
- rc: dict[str, Any] | None = ..., fname: str | Path | os.PathLike | None = ...
- ) -> Generator[None, None, None]: ...
- def use(backend: str, *, force: bool = ...) -> None: ...
- def get_backend() -> str: ...
- def interactive(b: bool) -> None: ...
- def is_interactive() -> bool: ...
- def _preprocess_data(
- func: Callable | None = ...,
- *,
- replace_names: list[str] | None = ...,
- label_namer: str | None = ...
- ) -> Callable: ...
- from matplotlib.cm import _colormaps as colormaps
- from matplotlib.colors import _color_sequences as color_sequences
|