Merge pull request #848 from darwindarak/dd/pyplot-worldage

RFC: fix world-age problem in PyPlot initialization
This commit is contained in:
Michael Krabbe Borregaard 2017-05-21 10:55:19 +02:00 committed by GitHub
commit 16c95c6deb

View File

@ -84,10 +84,10 @@ function _initialize_backend(::PyPlotBackend)
const pytransforms = PyPlot.pywrap(PyPlot.pyimport("matplotlib.transforms"))
const pycollections = PyPlot.pywrap(PyPlot.pyimport("matplotlib.collections"))
const pyart3d = PyPlot.pywrap(PyPlot.pyimport("mpl_toolkits.mplot3d.art3d"))
end
# we don't want every command to update the figure
PyPlot.ioff()
# we don't want every command to update the figure
PyPlot.ioff()
end
end
# --------------------------------------------------------------------------------------