Skip to content

Commit 01c7d77

Browse files
authored
TST/REF: split large categorical indexing test (#39195)
1 parent 963cf2b commit 01c7d77

File tree

3 files changed

+130
-231
lines changed

3 files changed

+130
-231
lines changed

pandas/_testing/__init__.py

+8
Original file line numberDiff line numberDiff line change
@@ -977,3 +977,11 @@ def loc(x):
977977

978978
def iloc(x):
979979
return x.iloc
980+
981+
982+
def at(x):
983+
return x.at
984+
985+
986+
def iat(x):
987+
return x.iat

0 commit comments

Comments
 (0)