]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fixed a typo.
authorSerhiy Storchaka <storchaka@gmail.com>
Sun, 1 Mar 2015 12:39:20 +0000 (14:39 +0200)
committerSerhiy Storchaka <storchaka@gmail.com>
Sun, 1 Mar 2015 12:39:20 +0000 (14:39 +0200)
Objects/typeobject.c

index d59108ef2c021eda89ed5c979ac82b8458ac2a6a..be53868d93ca52f57a99728bcb86e807c3eab267 100644 (file)
@@ -2810,7 +2810,7 @@ PyType_FromSpecWithBases(PyType_Spec *spec, PyObject *bases)
                 spec->name, (Py_ssize_t)(s - spec->name)));
     else {
         if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1,
-                "builtin type %.200s has no the __module__ attribute",
+                "builtin type %.200s has no __module__ attribute",
                 spec->name))
             goto fail;
     }