@@ -5952,9 +5952,9 @@ def any(self, *args, **kwargs):
5952
5952
Parameters
5953
5953
----------
5954
5954
*args
5955
- These parameters will be passed to numpy.any .
5955
+ Required for compatibility with numpy.
5956
5956
**kwargs
5957
- These parameters will be passed to numpy.any .
5957
+ Required for compatibility with numpy.
5958
5958
5959
5959
Returns
5960
5960
-------
@@ -5981,7 +5981,6 @@ def any(self, *args, **kwargs):
5981
5981
>>> index.any()
5982
5982
False
5983
5983
"""
5984
- # FIXME: docstr inaccurate, args/kwargs not passed
5985
5984
nv .validate_any (args , kwargs )
5986
5985
self ._maybe_disable_logical_methods ("any" )
5987
5986
return np .any (self .values )
@@ -5993,9 +5992,9 @@ def all(self, *args, **kwargs):
5993
5992
Parameters
5994
5993
----------
5995
5994
*args
5996
- These parameters will be passed to numpy.all .
5995
+ Required for compatibility with numpy.
5997
5996
**kwargs
5998
- These parameters will be passed to numpy.all .
5997
+ Required for compatibility with numpy.
5999
5998
6000
5999
Returns
6001
6000
-------
@@ -6039,8 +6038,6 @@ def all(self, *args, **kwargs):
6039
6038
>>> pd.Index([0, 0, 0]).any()
6040
6039
False
6041
6040
"""
6042
- # FIXME: docstr inaccurate, args/kwargs not passed
6043
-
6044
6041
nv .validate_all (args , kwargs )
6045
6042
self ._maybe_disable_logical_methods ("all" )
6046
6043
return np .all (self .values )
0 commit comments