@@ -3472,7 +3472,6 @@ def boxplot(self, x, notch=None, sym=None, vert=None, whis=None,
34723472 If a pair of floats, they indicate the percentiles at which to
34733473 draw the whiskers (e.g., (5, 95)). In particular, setting this to
34743474 (0, 100) results in whiskers covering the whole range of the data.
3475- "range" is a deprecated synonym for (0, 100).
34763475
34773476 In the edge case where ``Q1 == Q3``, *whis* is automatically set
34783477 to (0, 100) (cover the whole range of the data) if *autorange* is
@@ -4224,11 +4223,9 @@ def invalid_shape_exception(csize, xsize):
42244223 "edgecolors" , "c" , "facecolor" ,
42254224 "facecolors" , "color" ],
42264225 label_namer = "y" )
4227- @cbook ._delete_parameter ("3.2" , "verts" )
42284226 def scatter (self , x , y , s = None , c = None , marker = None , cmap = None , norm = None ,
4229- vmin = None , vmax = None , alpha = None , linewidths = None ,
4230- verts = None , edgecolors = None , * , plotnonfinite = False ,
4231- ** kwargs ):
4227+ vmin = None , vmax = None , alpha = None , linewidths = None , * ,
4228+ edgecolors = None , plotnonfinite = False , ** kwargs ):
42324229 """
42334230 A scatter plot of *y* vs. *x* with varying marker size and/or color.
42344231
@@ -5097,7 +5094,6 @@ def _fill_between_x_or_y(
50975094 """
50985095
50995096 dep_dir = {"x" : "y" , "y" : "x" }[ind_dir ]
5100- func_name = {"x" : "fill_between" , "y" : "fill_betweenx" }[dep_dir ]
51015097
51025098 if not rcParams ["_internal.classic_mode" ]:
51035099 kwargs = cbook .normalize_kwargs (kwargs , mcoll .Collection )
@@ -5120,10 +5116,8 @@ def _fill_between_x_or_y(
51205116 else :
51215117 where = np .asarray (where , dtype = bool )
51225118 if where .size != ind .size :
5123- cbook .warn_deprecated (
5124- "3.2" , message = f"Since %(since)s, the parameter *where* "
5125- f"must have the same size as { ind } in { func_name } (). This "
5126- "will become an error %(removal)s." )
5119+ raise ValueError (f"where size ({ where .size } ) does not match "
5120+ f"{ ind_dir } size ({ ind .size } )" )
51275121 where = where & ~ functools .reduce (
51285122 np .logical_or , map (np .ma .getmask , [ind , dep1 , dep2 ]))
51295123
0 commit comments