Explorar el Código

Fix building on Python 3.12 (fixes #312)

tags/v0.6.6
Ben Kurtovic hace 6 meses
padre
commit
fc1440a7b3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/mwparserfromhell/parser/ctokenizer/tokenizer.c

+ 1
- 1
src/mwparserfromhell/parser/ctokenizer/tokenizer.c Ver fichero

@@ -88,7 +88,7 @@ init_tokenizer_text(TokenizerInput *text)
text->object = Py_None;
Py_INCREF(Py_None);
text->length = 0;
text->kind = PyUnicode_WCHAR_KIND;
text->kind = PyUnicode_1BYTE_KIND;
text->data = NULL;
}



Cargando…
Cancelar
Guardar