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

Function start_server

pydevconsole.py:430–439  ·  view source on GitHub ↗
(host, port, client_port)

Source from the content-addressed store, hash-verified

428
429
430def start_server(host, port, client_port):
431 # replace exit (see comments on method)
432 # note that this does not work in jython!!! (sys method can't be replaced).
433 sys.exit = do_exit
434
435 interpreter = InterpreterInterface(host, client_port, threading.current_thread())
436
437 start_new_thread(start_console_server, (host, port, interpreter))
438
439 process_exec_queue(interpreter)
440
441
442def get_ipython_hidden_vars():

Callers

nothing calls this directly

Calls 2

process_exec_queueFunction · 0.85

Tested by

no test coverage detected