diff --git a/IPython/core/getipython.py b/IPython/core/getipython.py index 2c28c92..c457a52 100644 --- a/IPython/core/getipython.py +++ b/IPython/core/getipython.py @@ -28,10 +28,3 @@ def get_ipython(): from IPython.core.interactiveshell import InteractiveShell if InteractiveShell.initialized(): return InteractiveShell.instance() - -def get(): - warnings.warn("ipapi.get has been deprecated since IPython 0.11", - DeprecationWarning - ) - return get_ipython() -