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

Skip to content
Prev Previous commit
Syntax error
  • Loading branch information
erlend-aasland committed Apr 5, 2024
commit 5586fcdf4ccdbc356cbd4c57232c182a035b29bc
2 changes: 1 addition & 1 deletion Python/getargs.c
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ converterr(const char *expected, PyObject *arg, char *msgbuf, size_t bufsize)
PyOS_snprintf(msgbuf, bufsize,
"%.100s", expected);
}
else if (arg == NULL} {
else if (arg == NULL) {
PyOS_snprintf(msgbuf, bufsize, "must be %.100s", expected);
}
else {
Expand Down