summaryrefslogtreecommitdiff
path: root/Include/dictobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1991-04-03 19:02:06 +0000
committerGuido van Rossum <guido@python.org>1991-04-03 19:02:06 +0000
commit52ef0d1a695dc98baea330b6017287c8ebcc7726 (patch)
tree304cb9bcea2b0c35fec07b27eb7643600aa4bcfe /Include/dictobject.h
parent3349fdeb621aeff6c6ec3dff22f9d7a87f059836 (diff)
downloadcpython-52ef0d1a695dc98baea330b6017287c8ebcc7726.tar.gz
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 6e08bdd747..853fd7f6e2 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));