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 27a0884 commit 0c6a3b0Copy full SHA for 0c6a3b0
lib/matplotlib/axes/__init__.pyi
@@ -1,16 +1,13 @@
1
-__all__ = [
2
- 'Axes',
3
- 'Subplot',
4
- 'SubplotBase',
5
-]
6
-
7
from typing import TypeVar
8
9
-from ._axes import *
10
-from ._axes import Axes as Subplot
+from ._axes import Axes as Axes
+
11
12
_T = TypeVar("_T")
13
+# Backcompat.
+Subplot = Axes
14
class _SubplotBaseMeta(type):
15
def __instancecheck__(self, obj) -> bool: ...
16
lib/matplotlib/axes/_base.pyi
@@ -131,7 +131,6 @@ class _AxesBase(martist.Artist):
131
def clear(self) -> None: ...
132
def cla(self) -> None: ...
133
134
- # Could be made generic, but comments indicate it may be temporary anyway
135
class ArtistList(Sequence[_T]):
136
def __init__(
137
self,
0 commit comments