@@ -6187,6 +6187,7 @@ def any( # type: ignore[override]
6187
6187
filter_type = "bool" ,
6188
6188
)
6189
6189
6190
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "all" )
6190
6191
@Appender (make_doc ("all" , ndim = 1 ))
6191
6192
def all (
6192
6193
self ,
@@ -6206,6 +6207,7 @@ def all(
6206
6207
filter_type = "bool" ,
6207
6208
)
6208
6209
6210
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "min" )
6209
6211
@doc (make_doc ("min" , ndim = 1 ))
6210
6212
def min (
6211
6213
self ,
@@ -6218,6 +6220,7 @@ def min(
6218
6220
self , axis = axis , skipna = skipna , numeric_only = numeric_only , ** kwargs
6219
6221
)
6220
6222
6223
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "max" )
6221
6224
@doc (make_doc ("max" , ndim = 1 ))
6222
6225
def max (
6223
6226
self ,
@@ -6230,6 +6233,7 @@ def max(
6230
6233
self , axis = axis , skipna = skipna , numeric_only = numeric_only , ** kwargs
6231
6234
)
6232
6235
6236
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "sum" )
6233
6237
@doc (make_doc ("sum" , ndim = 1 ))
6234
6238
def sum (
6235
6239
self ,
@@ -6248,6 +6252,7 @@ def sum(
6248
6252
** kwargs ,
6249
6253
)
6250
6254
6255
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "prod" )
6251
6256
@doc (make_doc ("prod" , ndim = 1 ))
6252
6257
def prod (
6253
6258
self ,
@@ -6266,6 +6271,7 @@ def prod(
6266
6271
** kwargs ,
6267
6272
)
6268
6273
6274
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "mean" )
6269
6275
@doc (make_doc ("mean" , ndim = 1 ))
6270
6276
def mean (
6271
6277
self ,
@@ -6278,6 +6284,7 @@ def mean(
6278
6284
self , axis = axis , skipna = skipna , numeric_only = numeric_only , ** kwargs
6279
6285
)
6280
6286
6287
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "median" )
6281
6288
@doc (make_doc ("median" , ndim = 1 ))
6282
6289
def median (
6283
6290
self ,
@@ -6290,6 +6297,7 @@ def median(
6290
6297
self , axis = axis , skipna = skipna , numeric_only = numeric_only , ** kwargs
6291
6298
)
6292
6299
6300
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "sem" )
6293
6301
@doc (make_doc ("sem" , ndim = 1 ))
6294
6302
def sem (
6295
6303
self ,
@@ -6308,6 +6316,7 @@ def sem(
6308
6316
** kwargs ,
6309
6317
)
6310
6318
6319
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "var" )
6311
6320
@doc (make_doc ("var" , ndim = 1 ))
6312
6321
def var (
6313
6322
self ,
@@ -6326,6 +6335,7 @@ def var(
6326
6335
** kwargs ,
6327
6336
)
6328
6337
6338
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "std" )
6329
6339
@doc (make_doc ("std" , ndim = 1 ))
6330
6340
def std (
6331
6341
self ,
@@ -6344,6 +6354,7 @@ def std(
6344
6354
** kwargs ,
6345
6355
)
6346
6356
6357
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "skew" )
6347
6358
@doc (make_doc ("skew" , ndim = 1 ))
6348
6359
def skew (
6349
6360
self ,
@@ -6356,6 +6367,7 @@ def skew(
6356
6367
self , axis = axis , skipna = skipna , numeric_only = numeric_only , ** kwargs
6357
6368
)
6358
6369
6370
+ @deprecate_nonkeyword_arguments (version = "3.0" , allowed_args = ["self" ], name = "kurt" )
6359
6371
@doc (make_doc ("kurt" , ndim = 1 ))
6360
6372
def kurt (
6361
6373
self ,
0 commit comments