Skip to content

Commit 549f672

Browse files
committed
Update test to run correctly in Python 3
1 parent eac8b61 commit 549f672

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/test_frame.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11260,7 +11260,7 @@ def test_clip_against_series(self):
1126011260

1126111261
clipped_df = df.clip(lb, ub, axis=0)
1126211262

11263-
for i in xrange(2):
11263+
for i in range(2):
1126411264
lb_mask = df.iloc[:, i] <= lb
1126511265
ub_mask = df.iloc[:, i] >= ub
1126611266
mask = ~lb_mask & ~ub_mask

0 commit comments

Comments
 (0)