Skip to content

Commit 77d4b0f

Browse files
committed
Merge pull request #6241 from cgohlke/patch-1
BUG: Fix ImportError on Python 3.4b2 and 3.4b3
2 parents 9bc7bac + 1e5d57a commit 77d4b0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/src/ujson/python/ujson.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ static struct PyModuleDef moduledef = {
7878
NULL /* m_free */
7979
};
8080

81-
#define PYMODINITFUNC PyObject *PyInit_json(void)
81+
#define PYMODINITFUNC PyMODINIT_FUNC PyInit_json(void)
8282
#define PYMODULE_CREATE() PyModule_Create(&moduledef)
8383
#define MODINITERROR return NULL
8484

0 commit comments

Comments
 (0)