We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a24596 commit 85a702dCopy full SHA for 85a702d
pandas/tests/frame/test_analytics.py
@@ -1374,26 +1374,6 @@ def test_any_all_extra(self):
1374
result = df[['C']].all(axis=None).item()
1375
assert result is True
1376
1377
- # skip pathological failure cases
1378
- # class CantNonzero(object):
1379
-
1380
- # def __nonzero__(self):
1381
- # raise ValueError
1382
1383
- # df[4] = CantNonzero()
1384
1385
- # it works!
1386
- # df.any(1)
1387
- # df.all(1)
1388
- # df.any(1, bool_only=True)
1389
- # df.all(1, bool_only=True)
1390
1391
- # df[4][4] = np.nan
1392
1393
1394
1395
1396
1397
def test_any_datetime(self):
1398
1399
# GH 23070
0 commit comments