##// END OF EJS Templates
Fix: openssh_tunnel did not parse port in `server`...
Fix: openssh_tunnel did not parse port in `server` Despite what the docstring of openssh_tunnel mentioned, it did not parse username in port in the `server` argument. This patch fixes the problem so that ipython client can connect to the server over port-forwarded ssh connection. For example, you can connect the client by the following code now:: c = Client('/path/to/ipcontroller-client.json', sshserver='me@localhost:1234')

File last commit:

r2661:595fc3b9
r6429:bcfab0f0
Show More
__init__.py
19 lines | 541 B | text/x-python | PythonLexer
"""
Package for dealing for process execution in a callback environment, in a
portable way.
killable_process.py is a wrapper of subprocess.Popen that allows the
subprocess and its children to be killed in a reliable way, including
under windows.
winprocess.py is required by killable_process.py to kill processes under
windows.
piped_process.py wraps process execution with callbacks to print output,
in a non-blocking way. It can be used to interact with a subprocess in eg
a GUI event loop.
"""
from pipedprocess import PipedProcess