##// END OF EJS Templates
on resume, print server info again...
on resume, print server info again This commit makes it possible to differentiate between many different long-running notebook servers, where the original ip address and port information printed at the beginning has scrolled out of the screen. We save the server location string that gets printed on startup, and re-print it when the user attempts to interrupt the server with Ctrl-C Thanks to @minrk for discussion on how this should work. Also added a docstring to the start() method

File last commit:

r9355:fa603a8f
r9910:2c6ca49d
Show More
kernel.py
12 lines | 254 B | text/x-python | PythonLexer
"""[DEPRECATED] Utilities for connecting to kernels
Moved to IPython.kernel.connect
"""
import warnings
warnings.warn("IPython.lib.kernel moved to IPython.kernel.connect in IPython 0.14",
DeprecationWarning
)
from IPython.kernel.connect import *