Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add more verbose removal warning stating version
  • Loading branch information
dmcdougall committed Jan 16, 2013
commit 088677c4c386ff7be6fb3d04f6068b88ce089131
1 change: 0 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
color so that any alpha set by markerfacecolor will respected.
- Thomas Caswell

>>>>>>> deprecate undocumented `matplotlib/mpl.py`
2012-11-13 Add a symmetric log normalization class to colors.py.
Also added some tests for the normalization class.
Till Stensitzki
Expand Down
5 changes: 4 additions & 1 deletion lib/matplotlib/mpl.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
"""
.. note:: Deprecated in 1.3
"""
import warnings
from matplotlib import MatplotlibDeprecationWarning as mplDeprecation
warnings.warn(
"matplotlib.mpl is deprecated and will be removed in the next release."
"matplotlib.mpl is deprecated and will be removed in version 1.4."
"Please use `import matplotlib as mpl` instead", mplDeprecation)
from matplotlib import artist
from matplotlib import axis
Expand Down