Skip to content

Commit b8d19bd

Browse files
authored
Merge pull request matplotlib#29306 from meeseeksmachine/auto-backport-of-pr-29242-on-v3.10.x
Backport PR matplotlib#29242 on branch v3.10.x (DOC: Add kwdoc list to scatter() docstring)
2 parents 1900640 + a42d0ed commit b8d19bd

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

doc/missing-references.json

+2
Original file line numberDiff line numberDiff line change
@@ -301,6 +301,7 @@
301301
"lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.hexbin:218",
302302
"lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.pcolor:187",
303303
"lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.quiver:256",
304+
"lib/matplotlib/axes/_axes.py:docstring of matplotlib.axes._axes.Axes.scatter:174",
304305
"lib/matplotlib/collections.py:docstring of matplotlib.artist.AsteriskPolygonCollection.set:45",
305306
"lib/matplotlib/collections.py:docstring of matplotlib.artist.CircleCollection.set:45",
306307
"lib/matplotlib/collections.py:docstring of matplotlib.artist.FillBetweenPolyCollection.set:46",
@@ -316,6 +317,7 @@
316317
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.hexbin:218",
317318
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.pcolor:187",
318319
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.quiver:256",
320+
"lib/matplotlib/pyplot.py:docstring of matplotlib.pyplot.scatter:174",
319321
"lib/matplotlib/quiver.py:docstring of matplotlib.artist.Barbs.set:46",
320322
"lib/matplotlib/quiver.py:docstring of matplotlib.artist.Quiver.set:46",
321323
"lib/matplotlib/quiver.py:docstring of matplotlib.quiver.Barbs:213",

lib/matplotlib/axes/_axes.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4855,7 +4855,8 @@ def scatter(self, x, y, s=None, c=None, marker=None, cmap=None, norm=None,
48554855
----------------
48564856
data : indexable object, optional
48574857
DATA_PARAMETER_PLACEHOLDER
4858-
**kwargs : `~matplotlib.collections.Collection` properties
4858+
**kwargs : `~matplotlib.collections.PathCollection` properties
4859+
%(PathCollection:kwdoc)s
48594860
48604861
See Also
48614862
--------

0 commit comments

Comments
 (0)