Commit ba644a62 authored by Victor Stinner's avatar Victor Stinner

Ooops, add missing ";" in my previous commit (r81324, typeobject.c)

It's time to go to bed...
parent e5f99f39
......@@ -1351,9 +1351,9 @@ consistent method resolution\norder (MRO) for bases");
if (name != NULL) {
name_str = _PyUnicode_AsString(name);
if (name_str == NULL)
name_str = "?"
name_str = "?";
} else
name_str = "?"
name_str = "?";
off += PyOS_snprintf(buf + off, sizeof(buf) - off, " %s", name_str);
Py_XDECREF(name);
if (--n && (size_t)(off+1) < sizeof(buf)) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment