##// END OF EJS Templates
IPython.testing.decorators is imported as dec everywhere else, unify....
IPython.testing.decorators is imported as dec everywhere else, unify. Signed-off-by: Thomas Spura <thomas.spura@gmail.com>

File last commit:

r4856:d3ee41f9
r5810:549a6b38
Show More
__init__.py
12 lines | 305 B | text/x-python | PythonLexer
MinRK
update tornado dependency to 2.1...
r4856 """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