##// END OF EJS Templates
flush outgoing heartbeats...
flush outgoing heartbeats Prevents mismatch between heartbeat timer and actual heartbeat send/recv events. Applied in notebook and parallel.

File last commit:

r4856:d3ee41f9
r5952:d545c3b6
Show More
__init__.py
12 lines | 305 B | text/x-python | PythonLexer
"""The IPython HTML Notebook"""
# check for tornado 2.1.0
msg = "The IPython Notebook requires tornado >= 2.1.0"
try:
import tornado
except ImportError:
raise ImportError(msg)
else:
if tornado.version_info < (2,1,0):
raise ImportError(msg+", but you have %s"%tornado.version)
del msg