From 9e424753f256aaa5c3025c7a8fd6c4d1776b1538 2024-12-10 14:24:05 From: M Bussonnier Date: 2024-12-10 14:24:05 Subject: [PATCH] Remove IPython/terminal/console.py Deprecat4ed since 4.0 --- diff --git a/IPython/terminal/console.py b/IPython/terminal/console.py deleted file mode 100644 index 65571a7..0000000 --- a/IPython/terminal/console.py +++ /dev/null @@ -1,19 +0,0 @@ -""" -Shim to maintain backwards compatibility with old IPython.terminal.console imports. -""" -# Copyright (c) IPython Development Team. -# Distributed under the terms of the Modified BSD License. - -import sys -from warnings import warn - -from IPython.utils.shimmodule import ShimModule, ShimWarning - -warn("The `IPython.terminal.console` package has been deprecated since IPython 4.0. " - "You should import from jupyter_console instead.", ShimWarning) - -# Unconditionally insert the shim into sys.modules so that further import calls -# trigger the custom attribute access above - -sys.modules['IPython.terminal.console'] = ShimModule( - src='IPython.terminal.console', mirror='jupyter_console')