We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be300e8 commit a3c8836Copy full SHA for a3c8836
bisect/45957.py
@@ -0,0 +1,11 @@
1
+# Passing an empty list to read_csv causes segmentation fault #45957
2
+
3
+import pandas as pd
4
5
+print(pd.__version__)
6
7
+try:
8
+ pd.read_csv([])
9
+except ValueError as err:
10
+ print(err)
11
+ exit(0)
0 commit comments