Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4775d7e

Browse files
author
Manuel Jung
committed
More unrelated changes generated by boilerplate.py
1 parent 7a304de commit 4775d7e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/matplotlib/pyplot.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2814,17 +2814,17 @@ def fill_between(x, y1, y2=0, where=None, interpolate=False, step=None,
28142814
# This function was autogenerated by boilerplate.py. Do not edit as
28152815
# changes will be lost
28162816
@_autogen_docstring(Axes.fill_betweenx)
2817-
def fill_betweenx(y, x1, x2=0, where=None, step=None, hold=None, data=None,
2818-
**kwargs):
2817+
def fill_betweenx(y, x1, x2=0, where=None, step=None, interpolate=False,
2818+
hold=None, data=None, **kwargs):
28192819
ax = gca()
28202820
# allow callers to override the hold state by passing hold=True|False
28212821
washold = ax.ishold()
28222822

28232823
if hold is not None:
28242824
ax.hold(hold)
28252825
try:
2826-
ret = ax.fill_betweenx(y, x1, x2=x2, where=where, step=step, data=data,
2827-
**kwargs)
2826+
ret = ax.fill_betweenx(y, x1, x2=x2, where=where, step=step,
2827+
interpolate=interpolate, data=data, **kwargs)
28282828
finally:
28292829
ax.hold(washold)
28302830

0 commit comments

Comments
 (0)