From: <jd...@us...> - 2008-05-28 02:04:28
|
Revision: 5281 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5281&view=rev Author: jdh2358 Date: 2008-05-27 19:04:26 -0700 (Tue, 27 May 2008) Log Message: ----------- fixed rgbacache bug which broke clim and clam in interactive use Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/image.py Modified: trunk/matplotlib/lib/matplotlib/image.py =================================================================== --- trunk/matplotlib/lib/matplotlib/image.py 2008-05-27 21:21:32 UTC (rev 5280) +++ trunk/matplotlib/lib/matplotlib/image.py 2008-05-28 02:04:26 UTC (rev 5281) @@ -116,6 +116,7 @@ update state """ self._imcache = None + self._rgbacache = None cm.ScalarMappable.changed(self) @@ -424,7 +425,6 @@ raise NotImplementedError('Method not supported') def set_interpolation(self, s): - print s if s != None and s != 'nearest': raise NotImplementedError('Only nearest neighbor supported') AxesImage.set_interpolation(self, s) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |