File size: 5,971 Bytes
714e7c4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | # Non-typed (and private) modules/functions matplotlib.backends.* matplotlib.tests.* matplotlib.pylab.* matplotlib._.* matplotlib.rcsetup._listify_validator matplotlib.rcsetup._validate_linestyle matplotlib.ft2font.Glyph matplotlib.testing.jpl_units.* matplotlib.sphinxext.* # set methods have heavy dynamic usage of **kwargs, with differences for subclasses # which results in technically inconsistent signatures, but not actually a problem matplotlib.*\.set$ # Typed inline, inconsistencies largely due to imports matplotlib.pyplot.* matplotlib.typing.* # Other decorator modifying signature # Runtime picks up *args **kwargs, but only decorated by a decorator that uses @wraps so? matplotlib.axis.Axis.draw # Backcompat decorator which does not modify runtime reported signature matplotlib.offsetbox.*Offset[Bb]ox.get_offset # Inconsistent super/sub class parameter name (maybe rename for consistency) matplotlib.projections.polar.RadialLocator.nonsingular matplotlib.ticker.LogLocator.nonsingular matplotlib.ticker.LogitLocator.nonsingular # Stdlib/Enum considered inconsistent (no fault of ours, I don't think) matplotlib.backend_bases._Mode.__new__ matplotlib.units.Number.__hash__ # Property read-write vs read-only weirdness, fix if possible matplotlib.offsetbox.DraggableBase.canvas matplotlib.offsetbox.DraggableBase.cids matplotlib.transforms.BboxTransform.is_separable matplotlib.transforms.BboxTransformFrom.is_separable matplotlib.transforms.BboxTransformTo.is_separable matplotlib.transforms.BlendedAffine2D.is_separable matplotlib.transforms.CompositeGenericTransform.is_separable matplotlib.transforms.TransformWrapper.input_dims matplotlib.transforms.TransformWrapper.is_separable matplotlib.transforms.TransformWrapper.output_dims # 3.6 Pending deprecations matplotlib.figure.Figure.set_constrained_layout matplotlib.figure.Figure.set_constrained_layout_pads matplotlib.figure.Figure.set_tight_layout # 3.7 deprecations matplotlib.cm.register_cmap matplotlib.cm.unregister_cmap matplotlib.collections.PolyCollection.span_where matplotlib.gridspec.GridSpecBase.get_grid_positions matplotlib.widgets.MultiCursor.needclear # 3.8 deprecations matplotlib.cbook.get_sample_data matplotlib.contour.ContourSet.allkinds matplotlib.contour.ContourSet.allsegs matplotlib.contour.ContourSet.tcolors matplotlib.contour.ContourSet.tlinewidths matplotlib.ticker.LogLocator.__init__ matplotlib.ticker.LogLocator.set_params # positional-only argument name lacking leading underscores matplotlib.axes._base._AxesBase.axis # Aliases (dynamically generated, not type hinted) matplotlib.collections.Collection.get_aa matplotlib.collections.Collection.get_antialiaseds matplotlib.collections.Collection.get_dashes matplotlib.collections.Collection.get_ec matplotlib.collections.Collection.get_edgecolors matplotlib.collections.Collection.get_facecolors matplotlib.collections.Collection.get_fc matplotlib.collections.Collection.get_linestyles matplotlib.collections.Collection.get_linewidths matplotlib.collections.Collection.get_ls matplotlib.collections.Collection.get_lw matplotlib.collections.Collection.get_transOffset matplotlib.collections.Collection.set_aa matplotlib.collections.Collection.set_antialiaseds matplotlib.collections.Collection.set_dashes matplotlib.collections.Collection.set_ec matplotlib.collections.Collection.set_edgecolors matplotlib.collections.Collection.set_facecolors matplotlib.collections.Collection.set_fc matplotlib.collections.Collection.set_linestyles matplotlib.collections.Collection.set_linewidths matplotlib.collections.Collection.set_ls matplotlib.collections.Collection.set_lw matplotlib.collections.Collection.set_transOffset matplotlib.lines.Line2D.get_aa matplotlib.lines.Line2D.get_c matplotlib.lines.Line2D.get_ds matplotlib.lines.Line2D.get_ls matplotlib.lines.Line2D.get_lw matplotlib.lines.Line2D.get_mec matplotlib.lines.Line2D.get_mew matplotlib.lines.Line2D.get_mfc matplotlib.lines.Line2D.get_mfcalt matplotlib.lines.Line2D.get_ms matplotlib.lines.Line2D.set_aa matplotlib.lines.Line2D.set_c matplotlib.lines.Line2D.set_ds matplotlib.lines.Line2D.set_ls matplotlib.lines.Line2D.set_lw matplotlib.lines.Line2D.set_mec matplotlib.lines.Line2D.set_mew matplotlib.lines.Line2D.set_mfc matplotlib.lines.Line2D.set_mfcalt matplotlib.lines.Line2D.set_ms matplotlib.patches.Patch.get_aa matplotlib.patches.Patch.get_ec matplotlib.patches.Patch.get_fc matplotlib.patches.Patch.get_ls matplotlib.patches.Patch.get_lw matplotlib.patches.Patch.set_aa matplotlib.patches.Patch.set_ec matplotlib.patches.Patch.set_fc matplotlib.patches.Patch.set_ls matplotlib.patches.Patch.set_lw matplotlib.text.Text.get_c matplotlib.text.Text.get_family matplotlib.text.Text.get_font matplotlib.text.Text.get_font_properties matplotlib.text.Text.get_ha matplotlib.text.Text.get_name matplotlib.text.Text.get_size matplotlib.text.Text.get_style matplotlib.text.Text.get_va matplotlib.text.Text.get_variant matplotlib.text.Text.get_weight matplotlib.text.Text.set_c matplotlib.text.Text.set_family matplotlib.text.Text.set_font matplotlib.text.Text.set_font_properties matplotlib.text.Text.set_ha matplotlib.text.Text.set_ma matplotlib.text.Text.set_name matplotlib.text.Text.set_size matplotlib.text.Text.set_stretch matplotlib.text.Text.set_style matplotlib.text.Text.set_va matplotlib.text.Text.set_variant matplotlib.text.Text.set_weight matplotlib.axes._base._AxesBase.get_fc matplotlib.axes._base._AxesBase.set_fc # Other dynamic python behaviors not type hinted matplotlib.rcsetup.defaultParams # Maybe should be abstractmethods, required for subclasses, stubs define once matplotlib.tri.*TriInterpolator.__call__ matplotlib.tri.*TriInterpolator.gradient # Functionally a method call, but actually a class instance, type hinted as former matplotlib.rcsetup.validate_fillstyle # TypeVar used only in type hints matplotlib.backend_bases.FigureCanvasBase._T matplotlib.backend_managers.ToolManager._T matplotlib.spines.Spine._T |