MCPcopy Create free account
hub / github.com/PyQt5/PyQt / __init__

Method __init__

QMetaObject/CallInThread.py:47–51  ·  view source on GitHub ↗
(self, textBrowser, parent, *args, **kwargs)

Source from the content-addressed store, hash-verified

45class ThreadPy(Thread):
46
47 def __init__(self, textBrowser, parent, *args, **kwargs):
48 super(ThreadPy, self).__init__(*args, **kwargs)
49 self._running = True
50 self._textBrowser = textBrowser
51 self._parent = parent
52
53 def stop(self):
54 self._running = False

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected