summaryrefslogtreecommitdiffstats
path: root/Objects/setobject.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-11-28 09:44:38 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-11-28 09:44:38 (GMT)
commitf83be4e3f353c4cfb53a22793dd1394797988c30 (patch)
treef3a4c1535a6b18cca165f1b24f1fe51f6c49eef3 /Objects/setobject.c
parentc9543e42330e5f339d6419eba6a8c5a61a39aeca (diff)
downloadcpython-f83be4e3f353c4cfb53a22793dd1394797988c30.zip
cpython-f83be4e3f353c4cfb53a22793dd1394797988c30.tar.gz
cpython-f83be4e3f353c4cfb53a22793dd1394797988c30.tar.bz2
Added view and iterator types to collections / _abcoll
I've also renamed several of the iterators to keep a consistent naming schema.
Diffstat (limited to 'Objects/setobject.c')
-rw-r--r--Objects/setobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/setobject.c b/Objects/setobject.c
index d85a28d..e4e7780 100644
--- a/Objects/setobject.c
+++ b/Objects/setobject.c
@@ -851,7 +851,7 @@ fail:
static PyTypeObject PySetIter_Type = {
PyVarObject_HEAD_INIT(&PyType_Type, 0)
- "setiterator", /* tp_name */
+ "set_iterator", /* tp_name */
sizeof(setiterobject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */