summaryrefslogtreecommitdiff
path: root/numpy/core/src/multiarray/textreading/readtext.c
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/src/multiarray/textreading/readtext.c')
-rw-r--r--numpy/core/src/multiarray/textreading/readtext.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/numpy/core/src/multiarray/textreading/readtext.c b/numpy/core/src/multiarray/textreading/readtext.c
index a5db1cb77..e8defcc4d 100644
--- a/numpy/core/src/multiarray/textreading/readtext.c
+++ b/numpy/core/src/multiarray/textreading/readtext.c
@@ -1,9 +1,9 @@
-#include <stdio.h>
-#include <stdbool.h>
-
#define PY_SSIZE_T_CLEAN
#include <Python.h>
+#include <stdio.h>
+#include <stdbool.h>
+
#define NPY_NO_DEPRECATED_API NPY_API_VERSION
#define _MULTIARRAYMODULE
#include "numpy/arrayobject.h"
@@ -194,11 +194,11 @@ _load_from_filelike(PyObject *NPY_UNUSED(mod),
parser_config pc = {
.delimiter = ',',
- .comment = '#',
.quote = '"',
- .imaginary_unit = 'j',
- .delimiter_is_whitespace = false,
+ .comment = '#',
.ignore_leading_whitespace = false,
+ .delimiter_is_whitespace = false,
+ .imaginary_unit = 'j',
.python_byte_converters = false,
.c_byte_converters = false,
.gave_int_via_float_warning = false,