[Python-checkins] r81325 - python/branches/py3k/Objects/typeobject.c

victor.stinner python-checkins at python.org
Wed May 19 03:50:45 CEST 2010


Author: victor.stinner
Date: Wed May 19 03:50:45 2010
New Revision: 81325

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

It's time to go to bed...


Modified:
   python/branches/py3k/Objects/typeobject.c

Modified: python/branches/py3k/Objects/typeobject.c
==============================================================================
--- python/branches/py3k/Objects/typeobject.c	(original)
+++ python/branches/py3k/Objects/typeobject.c	Wed May 19 03:50:45 2010
@@ -1351,9 +1351,9 @@
         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)) {


More information about the Python-checkins mailing list