Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4b3c1da

Browse files
committed
Added/moved dict2 interfaces.
1 parent b316515 commit 4b3c1da

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Include/dictobject.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,7 @@ extern int getdictsize PROTO((object *dp));
4343
extern char *getdictkey PROTO((object *dp, int i));
4444
extern object *getdictkeys PROTO((object *dp));
4545

46-
extern object *dict2key PROTO((object *dp, int i));
46+
extern object *getdict2key PROTO((object *dp, int i));
47+
extern object *dict2lookup PROTO((object *dp, object *key));
4748
extern int dict2insert PROTO((object *dp, object *key, object *item));
49+
extern int dict2remove PROTO((object *dp, object *key));

0 commit comments

Comments
 (0)