Skip to content

Commit 2ae5275

Browse files
committed
Add streamplot with broken_streamlines=False tests
1 parent 5495fd2 commit 2ae5275

14 files changed

+70099
-2
lines changed

lib/matplotlib/pyplot.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2909,14 +2909,16 @@ def streamplot(
29092909
x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
29102910
norm=None, arrowsize=1, arrowstyle='-|>', minlength=0.1,
29112911
transform=None, zorder=None, start_points=None, maxlength=4.0,
2912-
integration_direction='both', broken_streamlines=True, *, data=None):
2912+
integration_direction='both', broken_streamlines=True, *,
2913+
data=None):
29132914
__ret = gca().streamplot(
29142915
x, y, u, v, density=density, linewidth=linewidth, color=color,
29152916
cmap=cmap, norm=norm, arrowsize=arrowsize,
29162917
arrowstyle=arrowstyle, minlength=minlength,
29172918
transform=transform, zorder=zorder, start_points=start_points,
29182919
maxlength=maxlength,
2919-
integration_direction=integration_direction, broken_streamlines=broken_streamlines,
2920+
integration_direction=integration_direction,
2921+
broken_streamlines=broken_streamlines,
29202922
**({"data": data} if data is not None else {}))
29212923
sci(__ret.lines)
29222924
return __ret

0 commit comments

Comments
 (0)