We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbec57d commit b114badCopy full SHA for b114bad
pandas/parser.pyx
@@ -1074,7 +1074,8 @@ cdef class TextReader:
1074
na_filter, na_hashset)
1075
if user_dtype and na_count is not None:
1076
if na_count > 0:
1077
- raise Exception('Integer column has NA values')
+ raise Exception("Integer column has NA values in "
1078
+ "column {column}".format(column=i))
1079
1080
if result is not None and dtype[1:] != 'i8':
1081
result = result.astype(dtype)
0 commit comments