Skip to content

Commit 64ddf60

Browse files
committed
BUG: Fixed list of formatters in __all__ and docs
1 parent cf6852c commit 64ddf60

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed

lib/matplotlib/ticker.py

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,8 @@
154154
:class:`PercentFormatter`
155155
Format labels as a percentage
156156
157-
:class:`IntegerFormatter`
158-
Extension of :class:`StrMethodFormatter` to support integer formats.
159-
160-
:class:`LinearScaleFormatter`
161-
Wrap another formatter to display transformed values.
157+
:class:`TransformFormatter`
158+
Generic form of :class:`FuncFormatter` that transforms input values.
162159
163160
You can derive your own formatter from the Formatter base class by
164161
simply overriding the ``__call__`` method. The formatter class has
@@ -201,11 +198,10 @@
201198
'LogFormatterExponent', 'LogFormatterMathtext',
202199
'IndexFormatter', 'LogFormatterSciNotation',
203200
'LogitFormatter', 'EngFormatter', 'PercentFormatter',
204-
'LinearScaleFormatter', 'IntegerFormatter', 'Locator',
205-
'IndexLocator', 'FixedLocator', 'NullLocator',
206-
'LinearLocator', 'LogLocator', 'AutoLocator',
207-
'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator',
208-
'SymmetricalLogLocator', 'LogitLocator')
201+
'TransformFormatter', 'Locator', 'IndexLocator',
202+
'FixedLocator', 'NullLocator', 'LinearLocator', 'LogLocator',
203+
'AutoLocator', 'MultipleLocator', 'MaxNLocator',
204+
'AutoMinorLocator', 'SymmetricalLogLocator', 'LogitLocator')
209205

210206

211207
if six.PY3:

0 commit comments

Comments
 (0)