commit | 50add0483638caf947c18712160b8579e5f741fc | [log] [tgz] |
---|---|---|
author | Philip Jenvey <pjenvey@underboss.org> | Sun Nov 06 16:37:52 2011 -0800 |
committer | Philip Jenvey <pjenvey@underboss.org> | Sun Nov 06 16:37:52 2011 -0800 |
tree | ea34e4d936bd090c6d3fc91e7cf38ef795b54ceb | |
parent | 0277aa3b24c502af0166772fed830e0d2af6dfcf [diff] [blame] |
quote the type name for improved readability
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 4d960b8..871eaa3 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c
@@ -1121,7 +1121,7 @@ return NULL; if (!PyIter_Check(it)) { PyErr_Format(PyExc_TypeError, - "%.200s object is not an iterator", + "'%.200s' object is not an iterator", it->ob_type->tp_name); return NULL; }