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

Skip to content

Commit ba644a6

Browse files
author
Victor Stinner
committed
Ooops, add missing ";" in my previous commit (r81324, typeobject.c)
It's time to go to bed...
1 parent e5f99f3 commit ba644a6

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Objects/typeobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1351,9 +1351,9 @@ consistent method resolution\norder (MRO) for bases");
13511351
if (name != NULL) {
13521352
name_str = _PyUnicode_AsString(name);
13531353
if (name_str == NULL)
1354-
name_str = "?"
1354+
name_str = "?";
13551355
} else
1356-
name_str = "?"
1356+
name_str = "?";
13571357
off += PyOS_snprintf(buf + off, sizeof(buf) - off, " %s", name_str);
13581358
Py_XDECREF(name);
13591359
if (--n && (size_t)(off+1) < sizeof(buf)) {

0 commit comments

Comments
 (0)