##// END OF EJS Templates
make content_security_policy a property...
make content_security_policy a property and *add* `default-src: 'none'` to API handlers custom CSP applies to all handlers

File last commit:

r20354:4b151608
r21472:f2d874c5
Show More
zmqrelated.py
19 lines | 636 B | text/x-python | PythonLexer
"""Utilities for checking zmq versions."""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
from IPython.utils.version import check_version
def check_for_zmq(minimum_version, required_by='Someone'):
try:
import zmq
except ImportError:
raise ImportError("%s requires pyzmq >= %s"%(required_by, minimum_version))
pyzmq_version = zmq.__version__
if not check_version(pyzmq_version, minimum_version):
raise ImportError("%s requires pyzmq >= %s, but you have %s"%(
required_by, minimum_version, pyzmq_version))