8000 Add more verbose removal warning stating version · matplotlib/matplotlib@088677c · GitHub
[go: up one dir, main page]

Skip to content

Commit 088677c

Browse files
committed
Add more verbose removal warning stating version
1 parent 6511650 commit 088677c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
color so that any alpha set by markerfacecolor will respected.
3131
- Thomas Caswell
3232

33-
>>>>>>> deprecate undocumented `matplotlib/mpl.py`
3433
2012-11-13 Add a symmetric log normalization class to colors.py.
3534
Also added some tests for the normalization class.
3635
Till Stensitzki

lib/matplotlib/mpl.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
"""
2+
.. note:: Deprecated in 1.3
3+
"""
14
import warnings
25
from matplotlib import MatplotlibDeprecationWarning as mplDeprecation
36
warnings.warn(
4-
"matplotlib.mpl is deprecated and will be removed in the next release."
7+
"matplotlib.mpl is deprecated and will be removed in version 1.4."
58
"Please use `import matplotlib as mpl` instead", mplDeprecation)
69
from matplotlib import artist
710
from matplotlib import axis

0 commit comments

Comments
 (0)
0