Skip to content

Commit 8700497

Browse files
committed
convert set to list
1 parent b58dc49 commit 8700497

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/_libs/parsers.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ DEFAULT_CHUNKSIZE = 256 * 1024
278278
# common NA values
279279
# no longer excluding inf representations
280280
# '1.#INF','-1.#INF', '1.#INF000000',
281-
_NA_VALUES =_ensure_encoded(parsers._NA_VALUES)
281+
_NA_VALUES = _ensure_encoded(list(parsers._NA_VALUES))
282282

283283

284284
cdef class TextReader:

0 commit comments

Comments
 (0)