Skip to content

Commit 0fe4529

Browse files
committed
put definition before reference
1 parent 8700497 commit 0fe4529

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

pandas/_libs/parsers.pyx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,11 +275,6 @@ cdef extern from "parser/io.h":
275275

276276
DEFAULT_CHUNKSIZE = 256 * 1024
277277

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-
283278

284279
cdef class TextReader:
285280
"""
@@ -1380,6 +1375,12 @@ cdef asbytes(object o):
13801375
return str(o)
13811376

13821377

1378+
# common NA values
1379+
# no longer excluding inf representations
1380+
# '1.#INF','-1.#INF', '1.#INF000000',
1381+
_NA_VALUES = _ensure_encoded(list(parsers._NA_VALUES))
1382+
1383+
13831384
def _is_file_like(obj):
13841385
if PY3:
13851386
import io

0 commit comments

Comments
 (0)