MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / __init__

Method __init__

lib/matplotlib/backends/backend_wx.py:57–60  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

55 """Subclass of `.TimerBase` using wx.Timer events."""
56
57 def __init__(self, *args, **kwargs):
58 self._timer = wx.Timer()
59 self._timer.Notify = self._on_timer
60 super().__init__(*args, **kwargs)
61
62 def _timer_start(self):
63 self._timer.Start(self._interval, self._single)

Callers 8

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected