Revision: 4171 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4171&view=rev Author: dsdale Date: 2007年11月08日 16:31:48 -0800 (2007年11月08日) Log Message: ----------- note pyparsing change to API_CHANGES Modified Paths: -------------- trunk/matplotlib/API_CHANGES Modified: trunk/matplotlib/API_CHANGES =================================================================== --- trunk/matplotlib/API_CHANGES 2007年11月09日 00:22:03 UTC (rev 4170) +++ trunk/matplotlib/API_CHANGES 2007年11月09日 00:31:48 UTC (rev 4171) @@ -1,3 +1,7 @@ + Removed matplotlib.pyparsing. We now use the system's pyparsing + if it is available, and if not, we install pyparsing directly into + site-packages + Moved mlab.csv2rec -> recutils.csv2rec Added ax kwarg to pyplot.colorbar and Figure.colorbar so that This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 4512 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4512&view=rev Author: cmoad Date: 2007年11月29日 18:40:30 -0800 (2007年11月29日) Log Message: ----------- minor rev bump Modified Paths: -------------- trunk/matplotlib/API_CHANGES Modified: trunk/matplotlib/API_CHANGES =================================================================== --- trunk/matplotlib/API_CHANGES 2007年11月30日 02:19:04 UTC (rev 4511) +++ trunk/matplotlib/API_CHANGES 2007年11月30日 02:40:30 UTC (rev 4512) @@ -1,3 +1,5 @@ +0.91.1 Released + 0.91.0 Released Changed cbook.is_file_like to cbook.is_writable_file_like and This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 5687 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5687&view=rev Author: mdboom Date: 2008年06月27日 06:33:33 -0700 (2008年6月27日) Log Message: ----------- Add information about numpy copies. Add suggested replacement for offset_copy(). Modified Paths: -------------- trunk/matplotlib/API_CHANGES Modified: trunk/matplotlib/API_CHANGES =================================================================== --- trunk/matplotlib/API_CHANGES 2008年06月27日 13:31:53 UTC (rev 5686) +++ trunk/matplotlib/API_CHANGES 2008年06月27日 13:33:33 UTC (rev 5687) @@ -55,6 +55,11 @@ See transforms.py for a description of the design of the new transformation framework. + For efficiency, many of these functions return views into Numpy + arrays. This means that if you hold on to a reference to them, + their contents may change. If you want to store a snapshot of + their current values, use the Numpy array method copy(). + The view intervals are now stored only in one place -- in the Axes instance, not in the formatter instances as well. This means formatters must get their limits from their Axis, which in turn @@ -122,6 +127,8 @@ Transform.inverse_xy_tup(points) Transform.inverted().transform(points) + offset_copy(trans, x, y) trans + Affine2D().translate(x, y) + axes.py Axes.get_position() Axes.get_position() [Axes.get_position() used to return a list of points, not it This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.