From f83be4e3f353c4cfb53a22793dd1394797988c30 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Wed, 28 Nov 2007 09:44:38 +0000 Subject: Added view and iterator types to collections / _abcoll I've also renamed several of the iterators to keep a consistent naming schema. --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Objects/unicodeobject.c') diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 205576fef4..26349ef11d 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -9263,7 +9263,7 @@ static PyMethodDef unicodeiter_methods[] = { PyTypeObject PyUnicodeIter_Type = { PyVarObject_HEAD_INIT(&PyType_Type, 0) - "unicode_iterator", /* tp_name */ + "str_iterator", /* tp_name */ sizeof(unicodeiterobject), /* tp_basicsize */ 0, /* tp_itemsize */ /* methods */ -- cgit v1.2.1