##// END OF EJS Templates
Backport PR #2582: Fix displaying history when output cache is disabled....
Backport PR #2582: Fix displaying history when output cache is disabled. Previously, disabling the output cache disabled all history. These were separated, but the `%hist` magic was left with an unnecessary check, where if the output cache was disabled, it would refuse to work. Closes gh-2581

File last commit:

r6630:ffeb4a6a
r9840:f7a389a4
Show More
__init__.py
20 lines | 547 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
# check for pyzmq 2.1.4
from IPython.zmq import check_for_zmq
check_for_zmq('2.1.4', 'IPython.frontend.html.notebook')
del check_for_zmq