MCPcopy Index your code
hub / github.com/fabioz/PyDev.Debugger / connect

Method connect

pydevd.py:3249–3255  ·  view source on GitHub ↗
(self, host, port)

Source from the content-addressed store, hash-verified

3247 self.port = None
3248
3249 def connect(self, host, port):
3250 self.host = host
3251 self.port = port
3252 self.client = start_client(self.host, self.port)
3253 self.reader = DispatchReader(self)
3254 self.reader.pydev_do_not_trace = False # we run reader in the same thread so we don't want to loose tracing
3255 self.reader.run()
3256
3257 def close(self):
3258 try:

Callers 2

dispatchFunction · 0.95
mainFunction · 0.95

Calls 3

start_clientFunction · 0.90
DispatchReaderClass · 0.85
runMethod · 0.45

Tested by

no test coverage detected