[Python-checkins] cpython: Fixed a typo.

serhiy.storchaka python-checkins at python.org
Sun Mar 1 13:39:53 CET 2015


https://hg.python.org/cpython/rev/8dca41e6e86b
changeset:   94799:8dca41e6e86b
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sun Mar 01 14:39:20 2015 +0200
summary:
  Fixed a typo.

files:
  Objects/typeobject.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Objects/typeobject.c b/Objects/typeobject.c
--- a/Objects/typeobject.c
+++ b/Objects/typeobject.c
@@ -2810,7 +2810,7 @@
                 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;
     }

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list