##// END OF EJS Templates
move sentinel out of IPython.utils.signature...
move sentinel out of IPython.utils.signature signature is a backport of a stdlib file, and not an appropriate place for new code. Further, to avoid adding a new trivial module to genutils, a copy is added each place we've used a sentinel

File last commit:

r21025:3b9727ee
r21078:2098e1d4
Show More
consoleapp.py
13 lines | 395 B | text/x-python | PythonLexer
"""
Shim to maintain backwards compatibility with old IPython.consoleapp imports.
"""
# Copyright (c) IPython Development Team.
# Distributed under the terms of the Modified BSD License.
import sys
from warnings import warn
warn("The `IPython.consoleapp` package has been deprecated. "
"You should import from jupyter_client.consoleapp instead.")
from jupyter_client.consoleapp import *