##// END OF EJS Templates
update some parallel docs...
update some parallel docs * add ssh ipcontroller/ipengine example (closes #1017) * generated new performance numbers with SGE cluster * fix some remaining stale references * removed some screenshots, in favor of editable text closes #980

File last commit:

r4856:d3ee41f9
r5487:57c7e48f
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