MCPcopy Index your code
hub / github.com/PyQt5/PyQt / __init__

Method __init__

QThread/WakeupThread.py:19–24  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

17 valueChange = pyqtSignal(int)
18
19 def __init__(self, *args, **kwargs):
20 super(Thread, self).__init__(*args, **kwargs)
21 self._isPause = False
22 self._value = 0
23 self.cond = QWaitCondition()
24 self.mutex = QMutex()
25
26 def pause(self):
27 self._isPause = True

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected