summaryrefslogtreecommitdiffstats
path: root/Include/dictobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-04-03 19:02:06 (GMT)
committerGuido van Rossum <guido@python.org>1991-04-03 19:02:06 (GMT)
commit88671aeabb43aa4913104444bf81b7c355a681b0 (patch)
tree304cb9bcea2b0c35fec07b27eb7643600aa4bcfe /Include/dictobject.h
parent2abc7a6a9a36a6ae1b605973467ad10a67962573 (diff)
downloadcpython-88671aeabb43aa4913104444bf81b7c355a681b0.zip
cpython-88671aeabb43aa4913104444bf81b7c355a681b0.tar.gz
cpython-88671aeabb43aa4913104444bf81b7c355a681b0.tar.bz2
Added declaration for dict2insert.
Diffstat (limited to 'Include/dictobject.h')
-rw-r--r--Include/dictobject.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h
index 6e08bdd..853fd7f 100644
--- a/Include/dictobject.h
+++ b/Include/dictobject.h
@@ -42,3 +42,5 @@ extern int dictremove PROTO((object *dp, char *key));
extern int getdictsize PROTO((object *dp));
extern char *getdictkey PROTO((object *dp, int i));
extern object *getdictkeys PROTO((object *dp));
+
+extern int dict2insert PROTO((object *dp, object *key, object *item));