]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove dict2 interface -- it's now static.
authorGuido van Rossum <guido@python.org>
Sun, 14 Oct 1990 19:59:45 +0000 (19:59 +0000)
committerGuido van Rossum <guido@python.org>
Sun, 14 Oct 1990 19:59:45 +0000 (19:59 +0000)
Include/dictobject.h

index 140e336f633f199a12e7f34e9a9990c1d3d35744..d28bc84917b6feefd5d037113f517c493864dfef 100644 (file)
@@ -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));