From: <md...@us...> - 2008-07-11 18:31:07
|
Revision: 5748 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=5748&view=rev Author: mdboom Date: 2008-07-11 11:31:04 -0700 (Fri, 11 Jul 2008) Log Message: ----------- Typo in last commit Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2008-07-11 18:21:53 UTC (rev 5747) +++ trunk/matplotlib/lib/matplotlib/axes.py 2008-07-11 18:31:04 UTC (rev 5748) @@ -904,8 +904,8 @@ self.xaxis.set_clip_path(self.patch) self.yaxis.set_clip_path(self.patch) - self._shared_x_axes.clear() - self._shared_y_axes.clear() + self._shared_x_axes.clean() + self._shared_y_axes.clean() def clear(self): 'clear the axes' @@ -6032,7 +6032,7 @@ right """ - ax2 = self.figure.add_axes(self.get_position(True), sharex=self, + ax2 = self.figure.add_axes(self.get_position(True), # sharex=self, frameon=False) ax2.yaxis.tick_right() ax2.yaxis.set_label_position('right') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |