screenshare/venv/lib/python3.12/site-packages/matplotlib/axes/__init__.py
2024-11-29 18:15:30 +00:00

19 lines
365 B
Python

from . import _base
from ._axes import Axes # noqa: F401
# Backcompat.
Subplot = Axes
class _SubplotBaseMeta(type):
def __instancecheck__(self, obj):
return (isinstance(obj, _base._AxesBase)
and obj.get_subplotspec() is not None)
class SubplotBase(metaclass=_SubplotBaseMeta):
pass
def subplot_class_factory(cls): return cls