From: <ef...@us...> - 2007-12-26 07:51:22
|
Revision: 4789 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4789&view=rev Author: efiring Date: 2007-12-25 23:51:19 -0800 (Tue, 25 Dec 2007) Log Message: ----------- Fix bug in errorbar, reported by Noriko Minakawa Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/axes.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2007-12-26 07:23:27 UTC (rev 4788) +++ trunk/matplotlib/CHANGELOG 2007-12-26 07:51:19 UTC (rev 4789) @@ -1,3 +1,5 @@ +2007-12-25 Fix bug in errorbar, identified by Noriko Minakawa - EF + 2007-12-25 Changed masked array importing to work with the upcoming numpy 1.05 (now the maskedarray branch) as well as with earlier versions. - EF Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2007-12-26 07:23:27 UTC (rev 4788) +++ trunk/matplotlib/lib/matplotlib/axes.py 2007-12-26 07:51:19 UTC (rev 4789) @@ -3684,6 +3684,8 @@ lines_kw['linewidth']=kwargs['linewidth'] if 'lw' in kwargs: lines_kw['lw']=kwargs['lw'] + if 'transform' in kwargs: + lines_kw['transform'] = kwargs['transform'] # arrays fine here, they are booleans and hence not units if not iterable(lolims): @@ -3719,6 +3721,8 @@ plot_kw['markeredgewidth']=kwargs['markeredgewidth'] if 'mew' in kwargs: plot_kw['mew']=kwargs['mew'] + if 'transform' in kwargs: + plot_kw['transform'] = kwargs['transform'] if xerr is not None: if iterable(xerr) and len(xerr)==2 and iterable(xerr[0]) and iterable(xerr[1]): This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |