Skip to content

Commit 723e7a8

Browse files
fix on windows
1 parent 5d413ec commit 723e7a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/unicodeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1445,7 +1445,7 @@ unicode_convert_wchar_to_ucs4(const wchar_t *begin, const wchar_t *end,
14451445

14461446
assert(unicode != NULL);
14471447
assert(_PyUnicode_CHECK(unicode));
1448-
assert(_PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND);
1448+
assert(PyUnicode_KIND(unicode) == PyUnicode_4BYTE_KIND);
14491449
ucs4_out = PyUnicode_4BYTE_DATA(unicode);
14501450

14511451
for (iter = begin; iter < end; ) {

0 commit comments

Comments
 (0)