Revision: 6377
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6377&view=rev
Author:   efiring
Date:     2008-11-08 18:41:25 +0000 (Sat, 08 Nov 2008)

Log Message:
-----------
Fix bugs in unit-handling in axhspan and axvspan

Modified Paths:
--------------
    trunk/matplotlib/lib/matplotlib/axes.py

Modified: trunk/matplotlib/lib/matplotlib/axes.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/axes.py     2008-11-08 18:33:01 UTC (rev 
6376)
+++ trunk/matplotlib/lib/matplotlib/axes.py     2008-11-08 18:41:25 UTC (rev 
6377)
@@ -2880,7 +2880,7 @@
             self.transAxes, self.transData)
 
         # process the unit information
-        self._process_unit_info( [xmin, xmax], [ymin, ymax], **kwargs )
+        self._process_unit_info( [xmin, xmax], [ymin, ymax], kwargs=kwargs )
 
         # first we need to strip away the units
         xmin, xmax = self.convert_xunits( [xmin, xmax] )
@@ -2934,7 +2934,7 @@
             self.transData, self.transAxes)
 
         # process the unit information
-        self._process_unit_info( [xmin, xmax], [ymin, ymax], **kwargs )
+        self._process_unit_info( [xmin, xmax], [ymin, ymax], kwargs=kwargs )
 
         # first we need to strip away the units
         xmin, xmax = self.convert_xunits( [xmin, xmax] )


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 the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to