diff options
author | Guido van Rossum <guido@python.org> | 2001-04-20 16:52:06 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-04-20 16:52:06 (GMT) |
commit | 55ad67d74dea7e04c929319d3b92b4d9481c009c (patch) | |
tree | 763d17804d8117a6514cb029dbeca97762a816ee /Objects/dictobject.c | |
parent | 0dbb4fba4c59741466ac18eeb946ca56989717d4 (diff) | |
download | cpython-55ad67d74dea7e04c929319d3b92b4d9481c009c.zip cpython-55ad67d74dea7e04c929319d3b92b4d9481c009c.tar.gz cpython-55ad67d74dea7e04c929319d3b92b4d9481c009c.tar.bz2 |
Oops. Removed dictiter_new decl that wasn't supposed to go in yet.
Diffstat (limited to 'Objects/dictobject.c')
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index d00e326..95d5b71 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 */ |