summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1990-10-30 13:27:43 (GMT)
committerGuido van Rossum <guido@python.org>1990-10-30 13:27:43 (GMT)
commit6990c943a0a4c7179a5a93e1e9d976b975aca16a (patch)
tree12d47c13df5b1ddf35f7a95a2be7959254af1f5c /Include
parent3ccb6172f86d67335b577fd0160de1055e1b0cb6 (diff)
downloadcpython-6990c943a0a4c7179a5a93e1e9d976b975aca16a.zip
cpython-6990c943a0a4c7179a5a93e1e9d976b975aca16a.tar.gz
cpython-6990c943a0a4c7179a5a93e1e9d976b975aca16a.tar.bz2
Added getdictkeys() prototype.
Diffstat (limited to 'Include')
-rw-r--r--Include/dictobject.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h
index d28bc84..644ec85 100644
--- a/Include/dictobject.h
+++ b/Include/dictobject.h
@@ -17,3 +17,4 @@ 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));
+extern object *getdictkeys PROTO((object *dp));