Re: [matplotlib-devel] Bug in scale.py
Yes. Thank you for finding this. Fixed in SVN. Cheers, Mike Ryan May wrote: > Hi, > > I think I found a bug while looking over scale.py: > > 127 class InvertedNaturalLogTransform(Transform): > 128 input_dims = 1 > 129 output_dims = 1 > 130 is_sepa
[matplotlib-devel] Bug in scale.py
Hi, I think I found a bug while looking over scale.py: 127 class InvertedNaturalLogTransform(Transform): 128 input_dims = 1 129 output_dims = 1 130 is_separable = True 131 base = np.e 132 133 def transform(self, a):