From: Guido van Rossum <guido@python.org>
Date: Fri, 20 Apr 2001 16:52:06 +0000 (+0000)
Subject: Oops.  Removed dictiter_new decl that wasn't supposed to go in yet.
X-Git-Tag: v2.2a3~1987
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=55ad67d74dea7e04c929319d3b92b4d9481c009c;p=python

Oops.  Removed dictiter_new decl that wasn't supposed to go in yet.
---

diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index d00e32617a..95d5b71bd0 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -1310,8 +1310,6 @@ dict_contains(dictobject *mp, PyObject *key)
 		&& (mp->ma_lookup)(mp, key, hash)->me_value != NULL);
 }
 
-staticforward PyObject *dictiter_new(dictobject *);
-
 /* Hack to implement "key in dict" */
 static PySequenceMethods dict_as_sequence = {
 	0,					/* sq_length */