@@ -6038,10 +6038,12 @@ def pcolor(self, *args, shading=None, alpha=None, norm=None, cmap=None,
6038
6038
6039
6039
Call signature::
6040
6040
6041
- pcolor([X, Y,] C, **kwargs)
6041
+ pcolor([X, Y,] C, /, **kwargs)
6042
6042
6043
6043
*X* and *Y* can be used to specify the corners of the quadrilaterals.
6044
6044
6045
+ The arguments *X*, *Y*, *C* are positional-only.
6046
+
6045
6047
.. hint::
6046
6048
6047
6049
``pcolor()`` can be very slow for large arrays. In most
@@ -6253,10 +6255,12 @@ def pcolormesh(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
6253
6255
6254
6256
Call signature::
6255
6257
6256
- pcolormesh([X, Y,] C, **kwargs)
6258
+ pcolormesh([X, Y,] C, /, **kwargs)
6257
6259
6258
6260
*X* and *Y* can be used to specify the corners of the quadrilaterals.
6259
6261
6262
+ The arguments *X*, *Y*, *C* are positional-only.
6263
+
6260
6264
.. hint::
6261
6265
6262
6266
`~.Axes.pcolormesh` is similar to `~.Axes.pcolor`. It is much faster
@@ -6480,6 +6484,8 @@ def pcolorfast(self, *args, alpha=None, norm=None, cmap=None, vmin=None,
6480
6484
6481
6485
ax.pcolorfast([X, Y], C, /, **kwargs)
6482
6486
6487
+ The arguments *X*, *Y*, *C* are positional-only.
6488
+
6483
6489
This method is similar to `~.Axes.pcolor` and `~.Axes.pcolormesh`.
6484
6490
It's designed to provide the fastest pcolor-type plotting with the
6485
6491
Agg backend. To achieve this, it uses different algorithms internally
@@ -6662,7 +6668,9 @@ def contour(self, *args, **kwargs):
6662
6668
6663
6669
Call signature::
6664
6670
6665
- contour([X, Y,] Z, [levels], **kwargs)
6671
+ contour([X, Y,] Z, /, [levels], **kwargs)
6672
+
6673
+ The arguments *X*, *Y*, *Z* are positional-only.
6666
6674
%(contour_doc)s
6667
6675
"""
6668
6676
kwargs ['filled' ] = False
@@ -6678,7 +6686,9 @@ def contourf(self, *args, **kwargs):
6678
6686
6679
6687
Call signature::
6680
6688
6681
- contourf([X, Y,] Z, [levels], **kwargs)
6689
+ contourf([X, Y,] Z, /, [levels], **kwargs)
6690
+
6691
+ The arguments *X*, *Y*, *Z* are positional-only.
6682
6692
%(contour_doc)s
6683
6693
"""
6684
6694
kwargs ['filled' ] = True
0 commit comments