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.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to