@@ -3,4 +3,78 @@ Code Removal
33
44Legend
55------
6- Removed handling of `loc ` as a positional argument to `Legend `
6+ - Removed handling of `loc ` as a positional argument to `Legend `
7+
8+
9+ Legend handlers
10+ ~~~~~~~~~~~~~~~
11+ Remove code to allow legend handlers to be callable. They must now
12+ implement a method ``legend_artist ``.
13+
14+
15+ Axis
16+ ----
17+ Removed method ``set_scale ``. This is now handled via a private method which
18+ should not be used directly by users. It is called via ``Axes.set_{x,y}scale ``
19+ which takes care of ensuring the coupled changes are also made to the Axes object.
20+
21+ finance.py
22+ ----------
23+ Removed functions with ambiguous argument order from finance.py
24+
25+
26+ Annotation
27+ ----------
28+ Removed ``textcoords `` and ``xytext `` proprieties from Annotation objects.
29+
30+
31+ spinxext.ipython_*.py
32+ ---------------------
33+ Both ``ipython_console_highlighting `` and ``ipython_directive `` have been moved to
34+ `IPython `.
35+
36+ Change your import from 'matplotlib.sphinxext.ipython_directive' to
37+ 'IPython.sphinxext.ipython_directive' and from 'matplotlib.sphinxext.ipython_directive' to
38+ 'IPython.sphinxext.ipython_directive'
39+
40+
41+ LineCollection.color
42+ --------------------
43+ Deprecated in 2005, use ``set_color ``
44+
45+
46+ remove 'faceted' as a valid value for `shading ` in ``tri.tripcolor ``
47+ --------------------------------------------------------------------
48+ Use `edgecolor ` instead. Added validation on ``shading `` to
49+ only be valid values.
50+
51+
52+ Remove ``set_colorbar `` method from ``ScalarMappable ``
53+ ------------------------------------------------------
54+ Remove ``set_colorbar `` method, use `colorbar ` attribute directly.
55+
56+
57+ patheffects.svg
58+ ---------------
59+ - remove ``get_proxy_renderer `` method from ``AbstarctPathEffect `` class
60+ - remove ``patch_alpha `` and ``offset_xy `` from ``SimplePatchShadow ``
61+
62+
63+ Remove ``testing.image_util.py ``
64+ --------------------------------
65+ Contained only a no-longer used port of functionality from PIL
66+
67+
68+ Remove ``mlab.FIFOBuffer ``
69+ --------------------------
70+ Not used internally and not part of core mission of mpl.
71+
72+
73+ Remove ``mlab.prepca ``
74+ ----------------------
75+ Deprecated in 2009.
76+
77+
78+ Remove ``NavigationToolbar2QTAgg ``
79+ ----------------------------------
80+ Added no functionality over the base ``NavigationToolbar2Qt ``
0 commit comments