MCPcopy
hub / github.com/PyQt5/PyQt / __init__

Method __init__

Demo/BackingWidget.py:24–28  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

22
23class BackingWidget(QWidget):
24 def __init__(self, *args, **kwargs):
25 super().__init__(*args, **kwargs)
26 self._showed = False
27 self._thread = BackingPaint(self)
28 self.resize(800, 600)
29
30 def closeEvent(self, event):
31 if self._thread:

Callers

nothing calls this directly

Calls 2

BackingPaintClass · 0.90
resizeMethod · 0.45

Tested by

no test coverage detected