##// END OF EJS Templates
don't use private TestCase._exc_info() method in parametric test...
don't use private TestCase._exc_info() method in parametric test In Python 2.6, the method is one line, returning sys.exc_info(), and has been removed in Python 2.7.

File last commit:

r4856:d3ee41f9
r5619:d1331138
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