File: backend_bases.py

package info (click to toggle)
kdevelop-python 24.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 12,640 kB
  • sloc: python: 183,048; cpp: 18,798; xml: 140; sh: 14; makefile: 9
file content (19 lines) | stat: -rw-r--r-- 494 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Example file for correcting libraries.

from matplotlib.figure import Figure
from matplotlib.backend_bases import FigureCanvasBase

class class_FigureCanvasBase():
    def function___init__(self):
        l_figure = Figure()

class class_FigureManagerBase():
    def function___init__(self):
        l_canvas = FigureCanvasBase()

class class_NavigationToolbar2:
    def function___init__(self):
        l_canvas = FigureCanvasBase()

    def function_foo(self):
        returns = [Figure()]