summaryrefslogtreecommitdiffstats
path: root/Include/dictobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-06-07 13:57:16 (GMT)
committerGuido van Rossum <guido@python.org>1991-06-07 13:57:16 (GMT)
commite24122f5e2ea0aa71b53aadeca555be4be5ff1f5 (patch)
tree217b31ca38ff42917eb9201a95b5e0a962c2ba11 /Include/dictobject.h
parent5b02dbc2f833ca0148d5643038c1b94d09ed16e4 (diff)
downloadcpython-e24122f5e2ea0aa71b53aadeca555be4be5ff1f5.zip
cpython-e24122f5e2ea0aa71b53aadeca555be4be5ff1f5.tar.gz
cpython-e24122f5e2ea0aa71b53aadeca555be4be5ff1f5.tar.bz2
Export getdict2key() interface.
Diffstat (limited to 'Include/dictobject.h')
-rw-r--r--Include/dictobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h
index 853fd7f..2b1974b 100644
--- a/Include/dictobject.h
+++ b/Include/dictobject.h
@@ -43,4 +43,5 @@ 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 int dict2insert PROTO((object *dp, object *key, object *item));