summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-03-01 12:39:20 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-03-01 12:39:20 (GMT)
commit71c6f445cd541f1b95b71310755756240dddb1ea (patch)
tree7d9626701e77f7242a6c33434337106961a7d047 /Objects
parent7f9ea7543ecc978a636f2b0b5b28e0820644a312 (diff)
downloadcpython-71c6f445cd541f1b95b71310755756240dddb1ea.zip
cpython-71c6f445cd541f1b95b71310755756240dddb1ea.tar.gz
cpython-71c6f445cd541f1b95b71310755756240dddb1ea.tar.bz2
Fixed a typo.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/typeobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c
index d59108e..be53868 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;
}