@@ -4417,7 +4417,8 @@ def legend(self, *args, **kwargs):
4417
4417
instance. If *prop* is a dictionary, a new instance will be
4418
4418
created with *prop*. If *None*, use rc settings.
4419
4419
4420
- *fontsize*: [ size in points | 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' ]
4420
+ *fontsize*: [size in points | 'xx-small' | 'x-small' | 'small' |
4421
+ 'medium' | 'large' | 'x-large' | 'xx-large']
4421
4422
Set the font size. May be either a size string, relative to
4422
4423
the default font size, or an absolute font size in points. This
4423
4424
argument is only used if prop is not specified.
@@ -5439,7 +5440,6 @@ def xywhere(xs, ys, mask):
5439
5440
if 'zorder' in kwargs :
5440
5441
plot_kw ['zorder' ] = kwargs ['zorder' ]
5441
5442
5442
-
5443
5443
if xerr is not None :
5444
5444
if (iterable (xerr ) and len (xerr ) == 2 and
5445
5445
iterable (xerr [0 ]) and iterable (xerr [1 ])):
@@ -6036,6 +6036,7 @@ def scatter(self, x, y, s=20, c='b', marker='o', cmap=None, norm=None,
6036
6036
colors = mcolors .colorConverter .to_rgba_array (c , alpha )
6037
6037
6038
6038
faceted = kwargs .pop ('faceted' , None )
6039
+ edgecolors = kwargs .get ('edgecolors' , None )
6039
6040
if faceted is not None :
6040
6041
warnings .warn ("The faceted option is deprecated. "
6041
6042
"Please use edgecolor instead. Will "
@@ -6557,9 +6558,10 @@ def arrow(self, x, y, dx, dy, **kwargs):
6557
6558
Draws arrow on specified axis from (*x*, *y*) to (*x* + *dx*,
6558
6559
*y* + *dy*). Uses FancyArrow patch to construct the arrow.
6559
6560
6560
- The resulting arrow is affected by the axes aspect ratio and limits. This
6561
- may produce an arrow whose head is not square with its stem. To create
6562
- an arrow whose head is square with its stem, use :meth:`annotate`.
6561
+ The resulting arrow is affected by the axes aspect ratio and limits.
6562
+ This may produce an arrow whose head is not square with its stem. To
6563
+ create an arrow whose head is square with its stem, use
6564
+ :meth:`annotate`.
6563
6565
6564
6566
Optional kwargs control the arrow construction and properties:
6565
6567
0 commit comments