@@ -2840,7 +2840,7 @@ def hexbin(x, y, C=None, gridsize=100, bins=None, xscale='linear',
2840
2840
# This function was autogenerated by boilerplate.py. Do not edit as
2841
2841
# changes will be lost
2842
2842
@_autogen_docstring (Axes .hist )
2843
- def hist (x , bins = 10 , range = None , normed = False , weights = None , cumulative = False ,
2843
+ def hist (x , bins = None , range = None , normed = False , weights = None , cumulative = False ,
2844
2844
bottom = None , histtype = 'bar' , align = 'mid' , orientation = 'vertical' ,
2845
2845
rwidth = None , log = False , color = None , label = None , stacked = False ,
2846
2846
hold = None , data = None , ** kwargs ):
@@ -3267,9 +3267,9 @@ def step(x, y, *args, **kwargs):
3267
3267
# changes will be lost
3268
3268
@_autogen_docstring (Axes .streamplot )
3269
3269
def streamplot (x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None ,
3270
- norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 , maxlength = 4.0 ,
3271
- transform = None , zorder = 2 , start_points = None , hold = None , data = None ,
3272
- integration_direction = 'both' ):
3270
+ norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 ,
3271
+ maxlength = 4.0 , transform = None , zorder = 2 , start_points = None ,
3272
+ integration_direction = 'both' , hold = None , data = None ):
3273
3273
ax = gca ()
3274
3274
# allow callers to override the hold state by passing hold=True|False
3275
3275
washold = ax .ishold ()
@@ -3280,10 +3280,11 @@ def streamplot(x, y, u, v, density=1, linewidth=None, color=None, cmap=None,
3280
3280
ret = ax .streamplot (x , y , u , v , density = density , linewidth = linewidth ,
3281
3281
color = color , cmap = cmap , norm = norm ,
3282
3282
arrowsize = arrowsize , arrowstyle = arrowstyle ,
3283
- minlength = minlength , transform = transform ,
3284
- zorder = zorder , start_points = start_points ,
3285
- data = data , maxlength = maxlength ,
3286
- integration_direction = integration_direction )
3283
+ minlength = minlength , maxlength = maxlength ,
3284
+ transform = transform , zorder = zorder ,
3285
+ start_points = start_points ,
3286
+ integration_direction = integration_direction ,
3287
+ data = data )
3287
3288
finally :
3288
3289
ax .hold (washold )
3289
3290
sci (ret .lines )
0 commit comments