diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2024-05-11 14:26:05 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2024-05-11 14:35:40 +0300 |
commit | ebf1daa4c46f1c48865e6db613db68751770ccea (patch) | |
tree | d58d354f25c8106d5add16f6e2979d0e353e0318 /contrib/python/ipython/py3/IPython/core/interactiveshell.py | |
parent | 8173b4515355158a5787dcb12aa6036874776101 (diff) | |
download | ydb-ebf1daa4c46f1c48865e6db613db68751770ccea.tar.gz |
Intermediate changes
Diffstat (limited to 'contrib/python/ipython/py3/IPython/core/interactiveshell.py')
-rw-r--r-- | contrib/python/ipython/py3/IPython/core/interactiveshell.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/contrib/python/ipython/py3/IPython/core/interactiveshell.py b/contrib/python/ipython/py3/IPython/core/interactiveshell.py index 12c120625b..e9e649345f 100644 --- a/contrib/python/ipython/py3/IPython/core/interactiveshell.py +++ b/contrib/python/ipython/py3/IPython/core/interactiveshell.py @@ -3654,10 +3654,17 @@ class InteractiveShell(SingletonConfigurable): make sense in all contexts, for example a terminal ipython can't display figures inline. """ + from .pylabtools import _matplotlib_manages_backends + + if not _matplotlib_manages_backends() and gui in (None, "auto"): + # Early import of backend_inline required for its side effect of + # calling _enable_matplotlib_integration() + import matplotlib_inline.backend_inline + from IPython.core import pylabtools as pt gui, backend = pt.find_gui_and_backend(gui, self.pylab_gui_select) - if gui != 'inline': + if gui != None: # If we have our first gui selection, store it if self.pylab_gui_select is None: self.pylab_gui_select = gui |