Skip to content

Commit 3a5aa51

Browse files
update code sample for pandas-dev#38752
1 parent b1047a3 commit 3a5aa51

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

bisect/38752.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import numpy as np
22
import math
3-
import pandas as pd
3+
import sys
4+
5+
try:
6+
import pandas as pd
7+
except NameError:
8+
sys.exit(125)
49
import pandas._testing as tm
510

611
print(pd.__version__)

0 commit comments

Comments
 (0)