Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38e2714 commit f3e02baCopy full SHA for f3e02ba
2 files changed
CHANGELOG
@@ -4,7 +4,6 @@ New entries should be added at the top
4
2005-07-05 Fixed default backend import problem when using API (SF bug
5
# 1209354 - see API_CHANGES for more info - JDH
6
7
-
8
2005-07-04 backend_gtk.py: require PyGTK version 2.0.0 or higher - SC
9
10
2005-06-30 setupext.py: added numarray_inc_dirs for building against
lib/matplotlib/backends/__init__.py
@@ -49,3 +49,7 @@ def show(): pass
49
return new_figure_manager, draw_if_interactive, show
50
51
52
+# a hack to keep old versions of ipython working with mpl after bug
53
+# fix #1209354
54
+if 'IPython.Shell' in sys.modules:
55
+ new_figure_manager, draw_if_interactive, show = pylab_setup()
0 commit comments