##// END OF EJS Templates
associate messages with no parent to all qt frontends...
associate messages with no parent to all qt frontends The only messages that should have no parent are print statements made prior to the first execution. The principal example of this is the pylab welcome message.

File last commit:

r4856:d3ee41f9
r5362:361e7f97
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