SF.net SVN: matplotlib:[8179] branches/v0_99_maint/lib/mpl_toolkits/ axes_grid/axes_divider.py
Revision: 8179 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8179&view=rev Author: leejjoon Date: 2010-03-05 23:51:22 + (Fri, 05 Mar 2010) Log Message: --- fix a bug in SubplotDivider.new_horizontal that gave incrroect result when pack_start=True Modified Paths: -- branches/v0_99_maint/lib/mpl_toolkits/axes_grid/axes_divider.py Modified: branches/v0_99_maint/lib/mpl_toolkits/axes_grid/axes_divider.py === --- branches/v0_99_maint/lib/mpl_toolkits/axes_grid/axes_divider.py 2010-03-04 00:05:17 UTC (rev 8178) +++ branches/v0_99_maint/lib/mpl_toolkits/axes_grid/axes_divider.py 2010-03-05 23:51:22 UTC (rev 8179) @@ -449,7 +449,6 @@ locator = self.new_locator(nx=len(self._horizontal)-1, ny=0) ax = self._get_new_axes(**kwargs) -locator = self.new_locator(nx=len(self._horizontal)-1, ny=0) ax.set_axes_locator(locator) return ax This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. -- Download IntelĀ® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev ___ Matplotlib-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins
SF.net SVN: matplotlib:[8180] trunk/matplotlib/lib/mpl_toolkits/axes_grid/ axes_divider.py
Revision: 8180 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8180&view=rev Author: leejjoon Date: 2010-03-05 23:54:39 + (Fri, 05 Mar 2010) Log Message: --- same change as in r8179 of mpl99. fix a bug in SubplotDivider.new_horizontal that gave incrroect result when pack_start=True Modified Paths: -- trunk/matplotlib/lib/mpl_toolkits/axes_grid/axes_divider.py Modified: trunk/matplotlib/lib/mpl_toolkits/axes_grid/axes_divider.py === --- trunk/matplotlib/lib/mpl_toolkits/axes_grid/axes_divider.py 2010-03-05 23:51:22 UTC (rev 8179) +++ trunk/matplotlib/lib/mpl_toolkits/axes_grid/axes_divider.py 2010-03-05 23:54:39 UTC (rev 8180) @@ -449,7 +449,6 @@ locator = self.new_locator(nx=len(self._horizontal)-1, ny=0) ax = self._get_new_axes(**kwargs) -locator = self.new_locator(nx=len(self._horizontal)-1, ny=0) ax.set_axes_locator(locator) return ax This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. -- Download IntelĀ® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev ___ Matplotlib-checkins mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins
