##// END OF EJS Templates
Merge pull request #1569 from punchagan/support-backspace-and-beep-sequences...
Merge pull request #1569 from punchagan/support-backspace-and-beep-sequences BUG: qtconsole -- non-standard handling of \a and \b. This makes the behavior of the Qt console match that of an ANSI terminal with regards to \a and \b. Fixes #1561.

File last commit:

r6132:2959fa0a
r6438:ed4fe905 merge
Show More
__init__.py
15 lines | 409 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)
try:
version_info = tornado.version_info
except AttributeError:
raise ImportError(msg + ", but you have < 1.1.0")
if version_info < (2,1,0):
raise ImportError(msg + ", but you have %s" % tornado.version)
del msg