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

Method connect

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

Source from the content-addressed store, hash-verified

1512 time.sleep(0.1) # give threads time to start
1513
1514 def connect(self, host, port):
1515 if host:
1516 s = start_client(host, port)
1517 self._client_socket = s
1518 else:
1519 s = start_server(port)
1520
1521 self.initialize_network(s)
1522
1523 def create_wait_for_connection_thread(self):
1524 if self._waiting_for_connection_thread is not None:

Callers 11

_locked_settraceFunction · 0.95
mainFunction · 0.95
connect_to_serverMethod · 0.45
gui-gtk3.pyFile · 0.45
__init__Method · 0.45
gui-gtk.pyFile · 0.45
start_socket_clientMethod · 0.45
call_methodFunction · 0.45

Calls 3

initialize_networkMethod · 0.95
start_clientFunction · 0.90
start_serverFunction · 0.90

Tested by 1

start_socket_clientMethod · 0.36