@@ -5964,9 +5964,9 @@ def any(self, *args, **kwargs):
5964
5964
Parameters
5965
5965
----------
5966
5966
*args
5967
- These parameters will be passed to numpy.any .
5967
+ Required for compatibility with numpy.
5968
5968
**kwargs
5969
- These parameters will be passed to numpy.any .
5969
+ Required for compatibility with numpy.
5970
5970
5971
5971
Returns
5972
5972
-------
@@ -5993,7 +5993,6 @@ def any(self, *args, **kwargs):
5993
5993
>>> index.any()
5994
5994
False
5995
5995
"""
5996
- # FIXME: docstr inaccurate, args/kwargs not passed
5997
5996
nv .validate_any (args , kwargs )
5998
5997
self ._maybe_disable_logical_methods ("any" )
5999
5998
return np .any (self .values )
@@ -6005,9 +6004,9 @@ def all(self, *args, **kwargs):
6005
6004
Parameters
6006
6005
----------
6007
6006
*args
6008
- These parameters will be passed to numpy.all .
6007
+ Required for compatibility with numpy.
6009
6008
**kwargs
6010
- These parameters will be passed to numpy.all .
6009
+ Required for compatibility with numpy.
6011
6010
6012
6011
Returns
6013
6012
-------
@@ -6051,8 +6050,6 @@ def all(self, *args, **kwargs):
6051
6050
>>> pd.Index([0, 0, 0]).any()
6052
6051
False
6053
6052
"""
6054
- # FIXME: docstr inaccurate, args/kwargs not passed
6055
-
6056
6053
nv .validate_all (args , kwargs )
6057
6054
self ._maybe_disable_logical_methods ("all" )
6058
6055
return np .all (self .values )
0 commit comments