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

Skip to content

Commit 476fd14

Browse files
author
Manuel Jung
committed
Rerun boilerplate
1 parent 62487b3 commit 476fd14

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

lib/matplotlib/pyplot.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2605,7 +2605,8 @@ def boxplot(x, notch=None, sym=None, vert=None, whis=None, positions=None,
26052605
conf_intervals=None, meanline=None, showmeans=None, showcaps=None,
26062606
showbox=None, showfliers=None, boxprops=None, labels=None,
26072607
flierprops=None, medianprops=None, meanprops=None, capprops=None,
2608-
whiskerprops=None, manage_xticks=True, hold=None, data=None):
2608+
whiskerprops=None, manage_xticks=True, autorange=False, zorder=None,
2609+
hold=None, data=None):
26092610
ax = gca()
26102611
# allow callers to override the hold state by passing hold=True|False
26112612
washold = ax.ishold()
@@ -2624,7 +2625,8 @@ def boxplot(x, notch=None, sym=None, vert=None, whis=None, positions=None,
26242625
flierprops=flierprops, medianprops=medianprops,
26252626
meanprops=meanprops, capprops=capprops,
26262627
whiskerprops=whiskerprops,
2627-
manage_xticks=manage_xticks, data=data)
2628+
manage_xticks=manage_xticks, autorange=autorange,
2629+
zorder=zorder, data=data)
26282630
finally:
26292631
ax.hold(washold)
26302632

@@ -3285,7 +3287,7 @@ def step(x, y, *args, **kwargs):
32853287
@_autogen_docstring(Axes.streamplot)
32863288
def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
32873289
norm=None, arrowsize=1, arrowstyle='-|>', minlength=0.1,
3288-
transform=None, zorder=2, start_points=None, maxlength=4.0,
3290+
transform=None, zorder=None, start_points=None, maxlength=4.0,
32893291
integration_direction='both', hold=None, data=None):
32903292
ax = gca()
32913293
# allow callers to override the hold state by passing hold=True|False

0 commit comments

Comments
 (0)