summaryrefslogtreecommitdiffstats
path: root/Objects/abstract.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-09-30 05:58:42 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-09-30 05:58:42 (GMT)
commit8b13b3ede270bf6f7bf3427675e335ab0bd0f75b (patch)
tree91dd83bf24d7234cc68b50914cc883960e7df92f /Objects/abstract.c
parentd38b1c74f3f28a3f9a73c142d9be83425adaa6e1 (diff)
downloadcpython-8b13b3ede270bf6f7bf3427675e335ab0bd0f75b.zip
cpython-8b13b3ede270bf6f7bf3427675e335ab0bd0f75b.tar.gz
cpython-8b13b3ede270bf6f7bf3427675e335ab0bd0f75b.tar.bz2
SF bug [#466173] unpack TypeError unclear
Replaced 3 instances of "iter() of non-sequence" with "iteration over non-sequence". Restored "unpack non-sequence" for stuff like "a, b = 1".
Diffstat (limited to 'Objects/abstract.c')
-rw-r--r--Objects/abstract.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c
index ac95123..7a5305a 100644
--- a/Objects/abstract.c
+++ b/Objects/abstract.c
@@ -1859,7 +1859,7 @@ PyObject_GetIter(PyObject *o)
if (f == NULL) {
if (PySequence_Check(o))
return PySeqIter_New(o);
- PyErr_SetString(PyExc_TypeError, "iter() of non-sequence");
+ PyErr_SetString(PyExc_TypeError, "iteration over non-sequence");
return NULL;
}
else {