From: <lee...@us...> - 2009-05-17 21:36:42
|
Revision: 7114 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=7114&view=rev Author: leejjoon Date: 2009-05-17 21:36:34 +0000 (Sun, 17 May 2009) Log Message: ----------- a warning won't be issued for semilog axes if aspect="auto" Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2009-05-17 18:00:10 UTC (rev 7113) +++ trunk/matplotlib/lib/matplotlib/axes.py 2009-05-17 21:36:34 UTC (rev 7114) @@ -1137,10 +1137,11 @@ aspect_scale_mode = "log" elif (xscale == "linear" and yscale == "log") or \ (xscale == "log" and yscale == "linear"): - warnings.warn( - 'aspect is not supported for Axes with xscale=%s, yscale=%s' \ - % (xscale, yscale)) - aspect = "auto" + if aspect is not "auto": + warnings.warn( + 'aspect is not supported for Axes with xscale=%s, yscale=%s' \ + % (xscale, yscale)) + aspect = "auto" else: # some custom projections have their own scales. pass This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |