|
168 | 168 |
|
169 | 169 | import warnings
|
170 | 170 |
|
| 171 | + |
| 172 | +__all__ = ('TickHelper', 'Formatter', 'FixedFormatter', |
| 173 | + 'NullFormatter', 'FuncFormatter', 'FormatStrFormatter', |
| 174 | + 'StrMethodFormatter', 'ScalarFormatter', 'LogFormatter', |
| 175 | + 'LogFormatterExponent', 'LogFormatterMathtext', |
| 176 | + 'LogitFormatter', 'EngFormatter', 'Locator', |
| 177 | + 'IndexLocator', 'FixedLocator', 'NullLocator', |
| 178 | + 'LinearLocator', 'LogLocator', 'AutoLocator', |
| 179 | + 'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator', |
| 180 | + 'SymmetricalLogLocator') |
| 181 | + |
| 182 | + |
171 | 183 | if six.PY3:
|
172 | 184 | long = int
|
173 | 185 |
|
@@ -550,7 +562,7 @@ def __call__(self, x, pos=None):
|
550 | 562 | def set_scientific(self, b):
|
551 | 563 | """
|
552 | 564 | Turn scientific notation on or off.
|
553 |
| - |
| 565 | +
|
554 | 566 | .. seealso:: Method :meth:`set_powerlimits`
|
555 | 567 | """
|
556 | 568 | self._scientific = bool(b)
|
@@ -2148,13 +2160,3 @@ def get_locator(self, d):
|
2148 | 2160 | locator = MultipleLocator(ticksize)
|
2149 | 2161 |
|
2150 | 2162 | return locator
|
2151 |
| - |
2152 |
| - |
2153 |
| -__all__ = ('TickHelper', 'Formatter', 'FixedFormatter', |
2154 |
| - 'NullFormatter', 'FuncFormatter', 'FormatStrFormatter', |
2155 |
| - 'StrMethodFormatter', 'ScalarFormatter', 'LogFormatter', |
2156 |
| - 'LogFormatterExponent', 'LogFormatterMathtext', 'Locator', |
2157 |
| - 'IndexLocator', 'FixedLocator', 'NullLocator', |
2158 |
| - 'LinearLocator', 'LogLocator', 'AutoLocator', |
2159 |
| - 'MultipleLocator', 'MaxNLocator', 'AutoMinorLocator', |
2160 |
| - 'SymmetricalLogLocator') |
|
0 commit comments