|
From: <as...@us...> - 2009-02-10 04:47:46
|
Revision: 6901
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6901&view=rev
Author: astraw
Date: 2009-02-10 04:47:43 +0000 (Tue, 10 Feb 2009)
Log Message:
-----------
axes.py: eliminate redundant attribute lookup
Modified Paths:
--------------
trunk/matplotlib/lib/matplotlib/axes.py
Modified: trunk/matplotlib/lib/matplotlib/axes.py
===================================================================
--- trunk/matplotlib/lib/matplotlib/axes.py 2009-02-10 04:47:29 UTC (rev 6900)
+++ trunk/matplotlib/lib/matplotlib/axes.py 2009-02-10 04:47:43 UTC (rev 6901)
@@ -613,9 +613,9 @@
self.transData = self.transScale + (self.transLimits + self.transAxes)
self._xaxis_transform = mtransforms.blended_transform_factory(
- self.axes.transData, self.axes.transAxes)
+ self.transData, self.transAxes)
self._yaxis_transform = mtransforms.blended_transform_factory(
- self.axes.transAxes, self.axes.transData)
+ self.transAxes, self.transData)
def get_xaxis_transform(self):
"""
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|