This commit is contained in:
Kovid Goyal
2026-05-10 12:18:08 +05:30
-1
View File
@@ -290,7 +290,6 @@ normalize(const char *text) {
PyObject *t = PyUnicode_FromString(text);
if (!t) return NULL;
if (PyTuple_SetItem(normalize_data.args, 1, t) != 0) {
Py_DECREF(t);
return NULL;
}
return PyObject_CallObject(normalize_data.func, normalize_data.args);