Skip to content

Commit e3b2de8

Browse files
authored
TST(string_dtype): Fix minor issue with CSV parser and column dtype (#60784)
1 parent 354b61f commit e3b2de8

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

pandas/io/parsers/arrow_parser_wrapper.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,8 @@ def _finalize_pandas_output(self, frame: DataFrame) -> DataFrame:
165165
# The only way self.names is not the same length as number of cols is
166166
# if we have int index_col. We should just pad the names(they will get
167167
# removed anyways) to expected length then.
168-
self.names = list(range(num_cols - len(self.names))) + self.names
168+
columns_prefix = [str(x) for x in range(num_cols - len(self.names))]
169+
self.names = columns_prefix + self.names
169170
multi_index_named = False
170171
frame.columns = self.names
171172

pandas/tests/io/parser/common/test_index.py

-3
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,6 @@ def test_pass_names_with_index(all_parsers, data, kwargs, expected):
9090
def test_multi_index_no_level_names(
9191
request, all_parsers, index_col, using_infer_string
9292
):
93-
if using_infer_string and all_parsers.engine == "pyarrow":
94-
# result should have string columns instead of object dtype
95-
request.applymarker(pytest.mark.xfail(reason="TODO(infer_string)"))
9693
data = """index1,index2,A,B,C,D
9794
foo,one,2,3,4,5
9895
foo,two,7,8,9,10

0 commit comments

Comments
 (0)