@@ -3283,7 +3283,7 @@ def step(x, y, *args, **kwargs):
3283
3283
@_autogen_docstring (Axes .streamplot )
3284
3284
def streamplot (x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None ,
3285
3285
norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 ,
3286
- maxlength = 4.0 , transform = None , zorder = 2 , start_points = None ,
3286
+ transform = None , zorder = 2 , start_points = None , maxlength = 4.0 ,
3287
3287
integration_direction = 'both' , hold = None , data = None ):
3288
3288
ax = gca ()
3289
3289
# allow callers to override the hold state by passing hold=True|False
@@ -3295,9 +3295,9 @@ def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
3295
3295
ret = ax .streamplot (x , y , u , v , density = density , linewidth = linewidth ,
3296
3296
color = color , cmap = cmap , norm = norm ,
3297
3297
arrowsize = arrowsize , arrowstyle = arrowstyle ,
3298
- minlength = minlength , maxlength = maxlength ,
3299
- transform = transform , zorder = zorder ,
3300
- start_points = start_points ,
3298
+ minlength = minlength , transform = transform ,
3299
+ zorder = zorder , start_points = start_points ,
3300
+ maxlength = maxlength ,
3301
3301
integration_direction = integration_direction ,
3302
3302
data = data )
3303
3303
finally :
0 commit comments