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 8700497 commit 0fe4529Copy full SHA for 0fe4529
pandas/_libs/parsers.pyx
@@ -275,11 +275,6 @@ cdef extern from "parser/io.h":
275
276
DEFAULT_CHUNKSIZE = 256 * 1024
277
278
-# common NA values
279
-# no longer excluding inf representations
280
-# '1.#INF','-1.#INF', '1.#INF000000',
281
-_NA_VALUES = _ensure_encoded(list(parsers._NA_VALUES))
282
-
283
284
cdef class TextReader:
285
"""
@@ -1380,6 +1375,12 @@ cdef asbytes(object o):
1380
1375
return str(o)
1381
1376
1382
1377
1378
+# common NA values
1379
+# no longer excluding inf representations
+# '1.#INF','-1.#INF', '1.#INF000000',
+_NA_VALUES = _ensure_encoded(list(parsers._NA_VALUES))
+
1383
1384
def _is_file_like(obj):
1385
if PY3:
1386
import io
0 commit comments