Browse Source

Fix regression in C tokenizer (#125)

tags/v0.4.3
Ben Kurtovic 8 years ago
parent
commit
23d97583bf
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      mwparserfromhell/parser/ctokenizer/definitions.c

+ 4
- 1
mwparserfromhell/parser/ctokenizer/definitions.c View File

@@ -65,8 +65,11 @@ static PyObject* unicode_to_lcase_ascii(PyObject *input, const char **string)
return NULL;
bytes = PyUnicode_AsASCIIString(lower);
Py_DECREF(lower);
if (!bytes)
if (!bytes) {
if (PyErr_Occurred() && PyErr_ExceptionMatches(PyExc_UnicodeEncodeError))
PyErr_Clear();
return NULL;
}
*string = PyBytes_AS_STRING(bytes);
return bytes;
}


Loading…
Cancel
Save