1Changes for 0.72
2================
3
4.. code-block:: text
5
6  - Line2D, Text, and Patch copy_properties renamed update_from and
7    moved into artist base class
8
9  - LineCollecitons.color renamed to LineCollections.set_color for
10    consistency with set/get introspection mechanism,
11
12  - pylab figure now defaults to num=None, which creates a new figure
13    with a guaranteed unique number
14
15  - contour method syntax changed - now it is MATLAB compatible
16
17      unchanged: contour(Z)
18      old: contour(Z, x=Y, y=Y)
19      new: contour(X, Y, Z)
20
21    see http://matplotlib.sf.net/matplotlib.pylab.html#-contour
22
23
24   - Increased the default resolution for save command.
25
26   - Renamed the base attribute of the ticker classes to _base to avoid conflict
27     with the base method.  Sitt for subs
28
29   - subs=none now does autosubbing in the tick locator.
30
31   - New subplots that overlap old will delete the old axes.  If you
32     do not want this behavior, use fig.add_subplot or the axes
33     command
34