Skip to content

Commit cb369bb

Browse files
committed
Revert "included dtype conversion of mangled cols in c parser"
This reverts commit cf27280.
1 parent 0f78c9f commit cb369bb

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pandas/_libs/parsers.pyx

-4
Original file line numberDiff line numberDiff line change
@@ -989,10 +989,6 @@ cdef class TextReader:
989989
col_dtype = self.dtype[name]
990990
elif i in self.dtype:
991991
col_dtype = self.dtype[i]
992-
else:
993-
if isinstance(name, str) and name.split(".")[-1].isnumeric():
994-
orig_name = ".".join(name.split(".")[:-1])
995-
col_dtype = self.dtype.get(orig_name, None)
996992
else:
997993
if self.dtype.names:
998994
# structured array

0 commit comments

Comments
 (0)