]> granicus.if.org Git - python/commitdiff
Correct a typo during previous checkin.
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>
Fri, 4 Jul 2008 21:34:47 +0000 (21:34 +0000)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>
Fri, 4 Jul 2008 21:34:47 +0000 (21:34 +0000)
Python/modsupport.c

index e39c315459ec87db6ed9bc3a891f36e3d0f0ae4b..2531d0d1cabcab5140cbf22c83ca0f810729d702 100644 (file)
@@ -296,7 +296,7 @@ do_mkvalue(const char **p_format, va_list *p_va, int flags)
                        int i = va_arg(*p_va, int);
                        if (i < 0 || i > PyUnicode_GetMax()) {
                                PyErr_SetString(PyExc_OverflowError,
-                                               "%c arg not in range(0x110000)";
+                                               "%c arg not in range(0x110000)");
                                return NULL;
                        }
                        return PyUnicode_FromOrdinal(i);