@@ -2330,13 +2330,8 @@ def angle_spectrum(
2330
2330
2331
2331
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
2332
2332
@_copy_docstring_and_deprecators (Axes .annotate )
2333
- def annotate (
2334
- text , xy , xytext = None , xycoords = 'data' , textcoords = None ,
2335
- arrowprops = None , annotation_clip = None , ** kwargs ):
2336
- return gca ().annotate (
2337
- text , xy , xytext = xytext , xycoords = xycoords ,
2338
- textcoords = textcoords , arrowprops = arrowprops ,
2339
- annotation_clip = annotation_clip , ** kwargs )
2333
+ def annotate (text , xy , * args , ** kwargs ):
2334
+ return gca ().annotate (text , xy , * args , ** kwargs )
2340
2335
2341
2336
2342
2337
# Autogenerated by boilerplate.py. Do not edit as changes will be lost.
@@ -2432,7 +2427,7 @@ def boxplot(
2432
2427
showfliers = None , boxprops = None , labels = None , flierprops = None ,
2433
2428
medianprops = None , meanprops = None , capprops = None ,
2434
2429
whiskerprops = None , manage_ticks = True , autorange = False ,
2435
- zorder = None , capwidths = None , * , data = None ):
2430
+ zorder = None , * , data = None ):
2436
2431
return gca ().boxplot (
2437
2432
x , notch = notch , sym = sym , vert = vert , whis = whis ,
2438
2433
positions = positions , widths = widths , patch_artist = patch_artist ,
@@ -2443,7 +2438,7 @@ def boxplot(
2443
2438
flierprops = flierprops , medianprops = medianprops ,
2444
2439
meanprops = meanprops , capprops = capprops ,
2445
2440
whiskerprops = whiskerprops , manage_ticks = manage_ticks ,
2446
- autorange = autorange , zorder = zorder , capwidths = capwidths ,
2441
+ autorange = autorange , zorder = zorder ,
2447
2442
** ({"data" : data } if data is not None else {}))
2448
2443
2449
2444
@@ -2900,16 +2895,14 @@ def streamplot(
2900
2895
x , y , u , v , density = 1 , linewidth = None , color = None , cmap = None ,
2901
2896
norm = None , arrowsize = 1 , arrowstyle = '-|>' , minlength = 0.1 ,
2902
2897
transform = None , zorder = None , start_points = None , maxlength = 4.0 ,
2903
- integration_direction = 'both' , broken_streamlines = True , * ,
2904
- data = None ):
2898
+ integration_direction = 'both' , * , data = None ):
2905
2899
__ret = gca ().streamplot (
2906
2900
x , y , u , v , density = density , linewidth = linewidth , color = color ,
2907
2901
cmap = cmap , norm = norm , arrowsize = arrowsize ,
2908
2902
arrowstyle = arrowstyle , minlength = minlength ,
2909
2903
transform = transform , zorder = zorder , start_points = start_points ,
2910
2904
maxlength = maxlength ,
2911
2905
integration_direction = integration_direction ,
2912
- broken_streamlines = broken_streamlines ,
2913
2906
** ({"data" : data } if data is not None else {}))
2914
2907
sci (__ret .lines )
2915
2908
return __ret
0 commit comments