From 20ab4ff45033f7886ec4e95147cf5c98c07835e4 Mon Sep 17 00:00:00 2001 Message-Id: <20ab4ff45033f7886ec4e95147cf5c98c07835e4.1717819202.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 19 Oct 2019 20:33:28 +0100 Subject: [PATCH] util.c: Fix docstrings for generic-map iterator classes. Organization: Straylight/Edgeware From: Mark Wooding --- util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util.c b/util.c index 027033e..6a6d26c 100644 --- a/util.c +++ b/util.c @@ -407,7 +407,7 @@ static PyTypeObject itemiter_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Iterates over the items of a mapping.", +"Iterates over the keys of a mapping.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ @@ -465,7 +465,7 @@ static PyTypeObject valiter_pytype_skel = { Py_TPFLAGS_BASETYPE, /* @tp_doc@ */ -"Iterates over the items of a mapping.", +"Iterates over the values of a mapping.", 0, /* @tp_traverse@ */ 0, /* @tp_clear@ */ -- [mdw]