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 cd1099c commit f2a6868Copy full SHA for f2a6868
pandas/_libs/parsers.pyx
@@ -275,13 +275,14 @@ 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
def c_type_conv(st):
282
cdef bytes py_bytes = st.encode()
283
return py_bytes
284
+# common NA values
+# no longer excluding inf representations
285
+# '1.#INF','-1.#INF', '1.#INF000000',
286
_NA_VALUES = [c_type_conv(x) for x in parsers._NA_VALUES]
287
288
0 commit comments