@@ -15,6 +15,52 @@ For new features that were added to matplotlib, please see
1515Changes in 1.3.x
1616================
1717
18+ * The following items that were deprecated in version 1.2 or earlier
19+ have now been removed completely. Use the following mapping to
20+ update your code:
21+
22+ - The Qt 3.x backends (`qt ` and `qtagg `) have been removed in
23+ favor of the Qt 4.x backends (`qt4 ` and `qt4agg `).
24+
25+ - The `matplotlib.nxutils ` module has been removed. Use the
26+ functionality on `matplotlib.path.Path.contains_point ` and
27+ friends instead.
28+
29+ - Instead of `axes.Axes.get_frame `, use `axes.Axes.patch `.
30+
31+ - The following `kwargs ` to the `legend ` function have been
32+ renamed:
33+
34+ - `pad ` -> `borderpad `
35+ - `labelsep ` -> `labelspacing `
36+ - `handlelen ` -> `handlelength `
37+ - `handletextsep ` -> `handletextpad `
38+ - `axespad ` -> `borderaxespad `
39+
40+ Related to this, the following rcParams have been removed:
41+
42+ - `legend.pad `, `legend.labelsep `, `legend.handlelen `,
43+ `legend.handletextsep ` and `legend.axespad `
44+
45+ - For the `hist ` function, instead of `width `, use `rwidth `
46+ (relative width).
47+
48+ - On `patches.Circle `, the `resolution ` kwarg has been removed.
49+ For a circle made up of line segments, use
50+ `patches.CirclePolygon `.
51+
52+ - The printing functions in the Wx backend have been removed due
53+ to the burden of keeping them up-to-date.
54+
55+ - `mlab.liaupunov ` has been removed.
56+
57+ - `mlab.save `, `mlab.load `, `pylab.save ` and `pylab.load ` have
58+ been removed. We recommend using `numpy.savetxt ` and
59+ `numpy.loadtxt ` instead.
60+
61+ - `widgets.HorizontalSpanSelector ` has been removed. Use
62+ `widgets.SpanSelector ` instead.
63+
1864* The top-level functions in `matplotlib.path ` that are implemented in
1965 C++ were never meant to be public. Instead, users should use the
2066 Pythonic wrappers for them in the `path.Path ` and
0 commit comments