Skip to content

Commit be373b9

Browse files
committed
BUG: fix python3/2 numpy import_array macro build issue with clang
1 parent fcced51 commit be373b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/src/ujson/python/objToJSON.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ enum PANDAS_FORMAT
100100
//#define PRINTMARK() fprintf(stderr, "%s: MARK(%d)\n", __FILE__, __LINE__)
101101
#define PRINTMARK()
102102

103-
#if (PY_VERSION_HEX >= 0x03000000)
103+
#if (PY_VERSION_HEX < 0x03000000)
104104
void initObjToJSON(void)
105105
#else
106106
int initObjToJSON(void)

0 commit comments

Comments
 (0)