Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9d72862

Browse files
committed
Merge branch 'patch-1' of git://github.com/Tillsten/matplotlib into Tillsten-patch-1
Conflicts: CHANGELOG
2 parents 69109de + aa95f93 commit 9d72862

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

CHANGELOG

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
2014-05-22 Allow the linscale keyword parameter of symlog scale to be
2+
smaller than one.
3+
14
2014-05-20 Added logic to in FontManager to invalidate font-cache if
2-
if font-family rcparams have changed.
5+
if font-family rcparams have changed.
36

47
2014-05-16 Fixed the positioning of multi-line text in the PGF backend.
58

@@ -34,8 +37,8 @@
3437
of a generator at line 263.
3538

3639
2014-02-25 In backend_qt4agg changed from using update -> repaint under
37-
windows. See comment in source near `self._priv_update` for
38-
longer explaination.
40+
windows. See comment in source near `self._priv_update` for
41+
longer explaination.
3942

4043
2014-03-27 Added tests for pie ccw parameter. Removed pdf and svg images
4144
from tests for pie linewidth parameter.
@@ -66,7 +69,7 @@
6669
2014-02-28 Added 'origin' kwarg to `spy`
6770

6871
2014-02-27 Implemented separate horizontal/vertical axes padding to the
69-
ImageGrid in the AxesGrid toolkit
72+
ImageGrid in the AxesGrid toolkit
7073

7174
2014-02-27 Allowed markevery property of matplotlib.lines.Line2D to be, an int
7275
numpy fancy index, slice object, or float. The float behaviour

lib/matplotlib/scale.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -449,7 +449,7 @@ def __init__(self, axis, **kwargs):
449449

450450
assert base > 1.0
451451
assert linthresh > 0.0
452-
assert linscale >= 1.0
452+
assert linscale > 0.0
453453

454454
self._transform = self.SymmetricalLogTransform(base,
455455
linthresh,

0 commit comments

Comments
 (0)