MCPcopy Create free account
hub / github.com/fabioz/PyDev.Debugger / __init__

Method __init__

_pydev_bundle/pydev_monkey_qt.py:160–168  ·  view source on GitHub ↗
(self, thread, original_started)

Source from the content-addressed store, hash-verified

158 _signal = QtCore.pyqtSignal() # @UndefinedVariable
159
160 def __init__(self, thread, original_started):
161 QtCore.QObject.__init__(self)
162 self.thread = thread
163 self.original_started = original_started
164 if qt_support_mode in ("pyside", "pyside2"):
165 self._signal = original_started
166 else:
167 self._signal.connect(self._on_call)
168 self.original_started.connect(self._signal)
169
170 def connect(self, func, *args, **kwargs):
171 if qt_support_mode in ("pyside", "pyside2"):

Callers

nothing calls this directly

Calls 2

__init__Method · 0.45
connectMethod · 0.45

Tested by

no test coverage detected