cpython: bbc929bc2224 (original) (raw)
Mercurial > cpython
changeset 73413:bbc929bc2224
quote the type name for improved readability
Philip Jenvey pjenvey@underboss.org | |
---|---|
date | Sun, 06 Nov 2011 16:37:52 -0800 |
parents | 00d4d6b85a01 |
children | 8c719e106694 |
files | Python/bltinmodule.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-)[+] [-] Python/bltinmodule.c 2 |
line wrap: on
line diff
--- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -1121,7 +1121,7 @@ builtin_next(PyObject *self, PyObject *a return NULL; if (!PyIter_Check(it)) { PyErr_Format(PyExc_TypeError,
"%.200s object is not an iterator",[](#l1.7)