Revision: 8667 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=8667&view=rev Author: leejjoon Date: 2010年08月28日 15:54:32 +0000 (2010年8月28日) Log Message: ----------- fix gridspec bug that location is wrongly calculated for non-square grid Modified Paths: -------------- branches/v1_0_maint/lib/matplotlib/gridspec.py Modified: branches/v1_0_maint/lib/matplotlib/gridspec.py =================================================================== --- branches/v1_0_maint/lib/matplotlib/gridspec.py 2010年08月27日 18:21:35 UTC (rev 8666) +++ branches/v1_0_maint/lib/matplotlib/gridspec.py 2010年08月28日 15:54:32 UTC (rev 8667) @@ -157,8 +157,8 @@ col1, col2 = k2, k2+1 - num1 = row1*nrows + col1 - num2 = (row2-1)*nrows + (col2-1) + num1 = row1*ncols + col1 + num2 = (row2-1)*ncols + (col2-1) # single key else: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.