Initial configuration commit
This commit is contained in:
commit
31c8abea59
266 changed files with 780274 additions and 0 deletions
52
typings/matplotlib/_pylab_helpers.pyi
Normal file
52
typings/matplotlib/_pylab_helpers.pyi
Normal file
|
@ -0,0 +1,52 @@
|
|||
"""
|
||||
This type stub file was generated by pyright.
|
||||
"""
|
||||
|
||||
from collections import OrderedDict
|
||||
from matplotlib.backend_bases import FigureManagerBase
|
||||
from matplotlib.figure import Figure
|
||||
|
||||
class Gcf:
|
||||
figs: OrderedDict[int, FigureManagerBase]
|
||||
@classmethod
|
||||
def get_fig_manager(cls, num: int) -> FigureManagerBase | None:
|
||||
...
|
||||
|
||||
@classmethod
|
||||
def destroy(cls, num: int | FigureManagerBase) -> None:
|
||||
...
|
||||
|
||||
@classmethod
|
||||
def destroy_fig(cls, fig: Figure) -> None:
|
||||
...
|
||||
|
||||
@classmethod
|
||||
def destroy_all(cls) -> None:
|
||||
...
|
||||
|
||||
@classmethod
|
||||
def has_fignum(cls, num: int) -> bool:
|
||||
...
|
||||
|
||||
@classmethod
|
||||
def get_all_fig_managers(cls) -> list[FigureManagerBase]:
|
||||
...
|
||||
|
||||
@classmethod
|
||||
def get_num_fig_managers(cls) -> int:
|
||||
...
|
||||
|
||||
@classmethod
|
||||
def get_active(cls) -> FigureManagerBase | None:
|
||||
...
|
||||
|
||||
@classmethod
|
||||
def set_active(cls, manager: FigureManagerBase) -> None:
|
||||
...
|
||||
|
||||
@classmethod
|
||||
def draw_all(cls, force: bool = ...) -> None:
|
||||
...
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue