Skip to content

Commit 7a0a9b6

Browse files
update code sample for pandas-dev#35665
1 parent 59b75e6 commit 7a0a9b6

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

bisect/35665.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,9 @@
99
}
1010
)
1111

12-
result = list(foo.iterrows())
13-
print(result)
12+
try:
13+
result = list(foo.iterrows())
14+
print(result)
15+
assert False
16+
except OverflowError as e:
17+
print(e)

0 commit comments

Comments
 (0)