From: <ef...@us...> - 2008-09-01 21:09:11
|
Revision: 6058 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6058&view=rev Author: efiring Date: 2008-09-01 21:09:09 +0000 (Mon, 01 Sep 2008) Log Message: ----------- Update CHANGELOG for Lielens NonUniformImage patch Modified Paths: -------------- trunk/matplotlib/CHANGELOG trunk/matplotlib/lib/matplotlib/axes.py trunk/matplotlib/lib/matplotlib/pyplot.py Modified: trunk/matplotlib/CHANGELOG =================================================================== --- trunk/matplotlib/CHANGELOG 2008-09-01 21:06:34 UTC (rev 6057) +++ trunk/matplotlib/CHANGELOG 2008-09-01 21:09:09 UTC (rev 6058) @@ -1,3 +1,6 @@ +2008-09-01 Added support for bilinear interpolation in + NonUniformImage; patch by Gregory Lielens. - EF + 2008-08-28 Added support for multiple histograms with data of different length - MM Modified: trunk/matplotlib/lib/matplotlib/axes.py =================================================================== --- trunk/matplotlib/lib/matplotlib/axes.py 2008-09-01 21:06:34 UTC (rev 6057) +++ trunk/matplotlib/lib/matplotlib/axes.py 2008-09-01 21:09:09 UTC (rev 6058) @@ -6216,7 +6216,7 @@ elif len(x.shape)==2 and x.shape[1]<x.shape[0]: warnings.warn('2D hist should be nsamples x nvariables; this looks transposed') except ValueError: - # multiple hist with data of different length + # multiple hist with data of different length if iterable(x[0]) and not is_string_like(x[0]): tx = [] for i in xrange(len(x)): Modified: trunk/matplotlib/lib/matplotlib/pyplot.py =================================================================== --- trunk/matplotlib/lib/matplotlib/pyplot.py 2008-09-01 21:06:34 UTC (rev 6057) +++ trunk/matplotlib/lib/matplotlib/pyplot.py 2008-09-01 21:09:09 UTC (rev 6058) @@ -2354,7 +2354,7 @@ except: hold(b) raise - + hold(b) return ret if Axes.barbs.__doc__ is not None: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |