8000 plt · matplotlib/matplotlib@024bef8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 024bef8

Browse files
committed
plt
1 parent 978f4b6 commit 024bef8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

lib/matplotlib/pyplot.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2855,16 +2855,18 @@ def title(label, fontdict=None, loc=None, pad=None, **kwargs):
28552855

28562856
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
28572857
@docstring.copy(Axes.set_xlabel)
2858-
def xlabel(xlabel, fontdict=None, labelpad=None, **kwargs):
2858+
def xlabel(xlabel, fontdict=None, labelpad=None, *, loc=None, **kwargs):
28592859
return gca().set_xlabel(
2860-
xlabel, fontdict=fontdict, labelpad=labelpad, **kwargs)
2860+
xlabel, fontdict=fontdict, labelpad=labelpad, loc=loc,
2861+
**kwargs)
28612862

28622863

28632864
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
28642865
@docstring.copy(Axes.set_ylabel)
2865-
def ylabel(ylabel, fontdict=None, labelpad=None, **kwargs):
2866+
def ylabel(ylabel, fontdict=None, labelpad=None, *, loc=None, **kwargs):
28662867
return gca().set_ylabel(
2867-
ylabel, fontdict=fontdict, labelpad=labelpad, **kwargs)
2868+
ylabel, fontdict=fontdict, labelpad=labelpad, loc=loc,
2869+
**kwargs)
28682870

28692871

28702872
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.

0 commit comments

Comments
 (0)
0