(host, port, client_port)
| 428 | |
| 429 | |
| 430 | def 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 | |
| 442 | def get_ipython_hidden_vars(): |
nothing calls this directly
no test coverage detected