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 47b48ee commit 9a08544Copy full SHA for 9a08544
lib/matplotlib/__init__.pyi
@@ -65,13 +65,21 @@ def get_cachedir() -> str: ...
65
def get_data_path() -> str: ...
66
def matplotlib_fname() -> str: ...
67
68
-class RcParams(dict[str, Any]):
+class RcParams(MutableMapping):
69
validate: dict[str, Callable]
70
+ namespaces: tuple
71
+ single_key_set: set
72
def __init__(self, *args, **kwargs) -> None: ...
73
+ def _split_key(self, key: str, sep: str = ".") -> tuple[list, int]: ...
74
+ def _set(self, key: str, val: Any) -> None: ...
75
+ def _get(self, key: str) -> Any: ...
76
def __setitem__(self, key: str, val: Any) -> None: ...
77
def __getitem__(self, key: str) -> Any: ...
78
+ def __delitem__(self, key: str) -> None: ...
79
def __iter__(self) -> Generator[str, None, None]: ...
80
def __len__(self) -> int: ...
81
+ def keys(self) -> Generator[str, None, None]: ...
82
+ def values(self) -> Generator[Any, None, None]: ...
83
def find_all(self, pattern: str) -> RcParams: ...
84
def copy(self) -> RcParams: ...
85
0 commit comments