From 2b22434fb013b6981e9726178c5cd0787605585a 2014-06-15 19:27:05 From: Zahari Date: 2014-06-15 19:27:05 Subject: [PATCH] Fix ssh tunnel for Python3 `xrange` was unrecognized. --- diff --git a/IPython/external/ssh/tunnel.py b/IPython/external/ssh/tunnel.py index 0cf9bcb..b1ab207 100644 --- a/IPython/external/ssh/tunnel.py +++ b/IPython/external/ssh/tunnel.py @@ -27,6 +27,7 @@ import socket from multiprocessing import Process from getpass import getpass, getuser import warnings +from IPython.utils.py3compat import xrange try: with warnings.catch_warnings():