[fix] Python 3 version of tokenize/normalize

This commit is contained in:
Al
2015-12-14 18:14:57 -05:00
parent 3401045b4f
commit 0f52f97621
2 changed files with 2 additions and 2 deletions

View File

@@ -271,7 +271,7 @@ static struct PyModuleDef module_def = {
#define INITERROR return NULL
PyObject *
PyInit_normalize(void)
PyInit_normalize(void) {
#else
#define INITERROR return

View File

@@ -134,7 +134,7 @@ static struct PyModuleDef module_def = {
#define INITERROR return NULL
PyObject *
PyInit_tokenize(void)
PyInit_tokenize(void) {
#else
#define INITERROR return