소스 검색

Fix building on Python 3.12 (fixes #312)

tags/v0.6.6
Ben Kurtovic 6 달 전
부모
커밋
fc1440a7b3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/mwparserfromhell/parser/ctokenizer/tokenizer.c

+ 1
- 1
src/mwparserfromhell/parser/ctokenizer/tokenizer.c 파일 보기

@@ -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;
}



불러오는 중...
취소
저장