projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0277aa3
)
quote the type name for improved readability
author
Philip Jenvey
<pjenvey@underboss.org>
Mon, 7 Nov 2011 00:37:52 +0000
(16:37 -0800)
committer
Philip Jenvey
<pjenvey@underboss.org>
Mon, 7 Nov 2011 00:37:52 +0000
(16:37 -0800)
Python/bltinmodule.c
patch
|
blob
|
history
diff --git
a/Python/bltinmodule.c
b/Python/bltinmodule.c
index 4d960b8d1c5b8847f3e6b32816bbbc6732be254a..871eaa3497817fe5c1567940a501a05bdd8e0df3 100644
(file)
--- a/
Python/bltinmodule.c
+++ b/
Python/bltinmodule.c
@@
-1121,7
+1121,7
@@
builtin_next(PyObject *self, PyObject *args)
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;
}