From: Serhiy Storchaka Date: Sun, 1 Mar 2015 12:39:20 +0000 (+0200) Subject: Fixed a typo. X-Git-Tag: v3.5.0a2~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71c6f445cd541f1b95b71310755756240dddb1ea;p=thirdparty%2FPython%2Fcpython.git Fixed a typo. --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index d59108ef2c02..be53868d93ca 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -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; }