We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c10b931 commit 8786256Copy full SHA for 8786256
pandas/io/parsers/python_parser.py
@@ -81,6 +81,7 @@ def __init__(self, f: FilePathOrBuffer | list, **kwds):
81
self.verbose = kwds["verbose"]
82
self.converters = kwds["converters"]
83
84
+ # GH 42462 : dtype dict parameter changes with duplicate columns in input data
85
if isinstance(kwds["dtype"], dict):
86
self.dtype = kwds["dtype"].copy()
87
else:
0 commit comments