Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a073e33

Browse files
committed
Correct a typo during previous checkin.
1 parent a4db686 commit a073e33

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/modsupport.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags)
296296
int i = va_arg(*p_va, int);
297297
if (i < 0 || i > PyUnicode_GetMax()) {
298298
PyErr_SetString(PyExc_OverflowError,
299-
"%c arg not in range(0x110000)";
299+
"%c arg not in range(0x110000)");
300300
return NULL;
301301
}
302302
return PyUnicode_FromOrdinal(i);

0 commit comments

Comments
 (0)