diff options
author | Guido van Rossum <guido@python.org> | 1991-08-16 09:00:42 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-08-16 09:00:42 +0000 |
commit | 4b3c1da6607639c254ced318497eb1dbb585b85a (patch) | |
tree | 8aa81e19aeffbc44e43995166e4cf4b4b163ee4e | |
parent | b316515289fbfb5e69ce1e5b22f0bdd50eceb5a9 (diff) | |
download | cpython-git-4b3c1da6607639c254ced318497eb1dbb585b85a.tar.gz |
Added/moved dict2 interfaces.
-rw-r--r-- | Include/dictobject.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h index 2b1974ba7e..a9d72cb956 100644 --- a/Include/dictobject.h +++ b/Include/dictobject.h @@ -43,5 +43,7 @@ extern int getdictsize PROTO((object *dp)); extern char *getdictkey PROTO((object *dp, int i)); extern object *getdictkeys PROTO((object *dp)); -extern object *dict2key PROTO((object *dp, int i)); +extern object *getdict2key PROTO((object *dp, int i)); +extern object *dict2lookup PROTO((object *dp, object *key)); extern int dict2insert PROTO((object *dp, object *key, object *item)); +extern int dict2remove PROTO((object *dp, object *key)); |