|
1 | 1 | # Non-typed (and private) modules/functions
|
2 |
| -matplotlib.backends.* |
3 |
| -matplotlib.tests.* |
4 |
| -matplotlib.pylab.* |
5 |
| -matplotlib._.* |
6 |
| -matplotlib.rcsetup._listify_validator |
7 |
| -matplotlib.rcsetup._validate_linestyle |
8 |
| -matplotlib.ft2font.Glyph |
9 |
| -matplotlib.testing.jpl_units.* |
10 |
| -matplotlib.sphinxext.* |
| 2 | +matplotlib\.backends\..* |
| 3 | +matplotlib\.tests(\..*)? |
| 4 | +matplotlib\.pylab\..* |
| 5 | +matplotlib\._.* |
| 6 | +matplotlib\.rcsetup\._listify_validator |
| 7 | +matplotlib\.rcsetup\._validate_linestyle |
| 8 | +matplotlib\.ft2font\.Glyph |
| 9 | +matplotlib\.testing\.jpl_units\..* |
| 10 | +matplotlib\.sphinxext(\..*)? |
11 | 11 |
|
12 | 12 | # set methods have heavy dynamic usage of **kwargs, with differences for subclasses
|
13 | 13 | # which results in technically inconsistent signatures, but not actually a problem
|
14 |
| -matplotlib.*\.set$ |
| 14 | +matplotlib\..*\.set$ |
15 | 15 |
|
16 | 16 | # Typed inline, inconsistencies largely due to imports
|
17 |
| -matplotlib.pyplot.* |
18 |
| -matplotlib.typing.* |
| 17 | +matplotlib\.pyplot\..* |
| 18 | +matplotlib\.typing\..* |
19 | 19 |
|
20 | 20 | # Other decorator modifying signature
|
21 | 21 | # Backcompat decorator which does not modify runtime reported signature
|
22 |
| -matplotlib.offsetbox.*Offset[Bb]ox.get_offset |
| 22 | +matplotlib\.offsetbox\..*Offset[Bb]ox\.get_offset |
23 | 23 |
|
24 | 24 | # Inconsistent super/sub class parameter name (maybe rename for consistency)
|
25 |
| -matplotlib.projections.polar.RadialLocator.nonsingular |
26 |
| -matplotlib.ticker.LogLocator.nonsingular |
27 |
| -matplotlib.ticker.LogitLocator.nonsingular |
| 25 | +matplotlib\.projections\.polar\.RadialLocator\.nonsingular |
| 26 | +matplotlib\.ticker\.LogLocator\.nonsingular |
| 27 | +matplotlib\.ticker\.LogitLocator\.nonsingular |
28 | 28 |
|
29 | 29 | # Stdlib/Enum considered inconsistent (no fault of ours, I don't think)
|
30 |
| -matplotlib.backend_bases._Mode.__new__ |
31 |
| -matplotlib.units.Number.__hash__ |
| 30 | +matplotlib\.backend_bases\._Mode\.__new__ |
| 31 | +matplotlib\.units\.Number\.__hash__ |
32 | 32 |
|
33 | 33 | # 3.6 Pending deprecations
|
34 |
| -matplotlib.figure.Figure.set_constrained_layout |
35 |
| -matplotlib.figure.Figure.set_constrained_layout_pads |
36 |
| -matplotlib.figure.Figure.set_tight_layout |
| 34 | +matplotlib\.figure\.Figure\.set_constrained_layout |
| 35 | +matplotlib\.figure\.Figure\.set_constrained_layout_pads |
| 36 | +matplotlib\.figure\.Figure\.set_tight_layout |
37 | 37 |
|
38 | 38 | # Maybe should be abstractmethods, required for subclasses, stubs define once
|
39 |
| -matplotlib.tri.*TriInterpolator.__call__ |
40 |
| -matplotlib.tri.*TriInterpolator.gradient |
| 39 | +matplotlib\.tri\..*TriInterpolator\.__call__ |
| 40 | +matplotlib\.tri\..*TriInterpolator\.gradient |
41 | 41 |
|
42 | 42 | # TypeVar used only in type hints
|
43 |
| -matplotlib.backend_bases.FigureCanvasBase._T |
44 |
| -matplotlib.backend_managers.ToolManager._T |
45 |
| -matplotlib.spines.Spine._T |
| 43 | +matplotlib\.backend_bases\.FigureCanvasBase\._T |
| 44 | +matplotlib\.backend_managers\.ToolManager\._T |
| 45 | +matplotlib\.spines\.Spine\._T |
46 | 46 |
|
47 | 47 | # Parameter inconsistency due to 3.10 deprecation
|
48 |
| -matplotlib.figure.FigureBase.get_figure |
| 48 | +matplotlib\.figure\.FigureBase\.get_figure |
49 | 49 |
|
50 | 50 | # getitem method only exists for 3.10 deprecation backcompatability
|
51 |
| -matplotlib.inset.InsetIndicator.__getitem__ |
| 51 | +matplotlib\.inset\.InsetIndicator\.__getitem__ |
0 commit comments