summaryrefslogtreecommitdiffstats
path: root/Include/dictobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-10-14 19:59:45 (GMT)
committerGuido van Rossum <guido@python.org>1990-10-14 19:59:45 (GMT)
commitce4704a4f575073ae1cc62b30c4b15d64c7b40f7 (patch)
treec78766bfcd14f429c59834a128dd8c5e34f52219 /Include/dictobject.h
parent3cf0ddfd94fb683ba265c40f60bd1e329848f1c6 (diff)
downloadcpython-ce4704a4f575073ae1cc62b30c4b15d64c7b40f7.zip
cpython-ce4704a4f575073ae1cc62b30c4b15d64c7b40f7.tar.gz
cpython-ce4704a4f575073ae1cc62b30c4b15d64c7b40f7.tar.bz2
Remove dict2 interface -- it's now static.
Diffstat (limited to 'Include/dictobject.h')
-rw-r--r--Include/dictobject.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h
index 140e336..d28bc84 100644
--- a/Include/dictobject.h
+++ b/Include/dictobject.h
@@ -17,9 +17,3 @@ extern int dictinsert PROTO((object *dp, char *key, object *item));
extern int dictremove PROTO((object *dp, char *key));
extern int getdictsize PROTO((object *dp));
extern char *getdictkey PROTO((object *dp, int i));
-
-/* New interface with (string)object * instead of char * arguments */
-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));
-extern object *getdict2key PROTO((object *dp, int i));