summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
Diffstat (limited to 'Objects')
-rw-r--r--Objects/dictobject.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c
index 36a18e4..3002226 100644
--- a/Objects/dictobject.c
+++ b/Objects/dictobject.c
@@ -2438,6 +2438,14 @@ dictview_new(PyObject *dict, PyTypeObject *type)
return (PyObject *)dv;
}
+/* TODO(guido): The views objects are not complete:
+
+ * support more set operations
+ * support arbitrary mappings?
+ - either these should be static or exported in dictobject.h
+ - if public then they should probably be in builtins
+*/
+
/* Forward */
PyTypeObject PyDictKeys_Type;
PyTypeObject PyDictItems_Type;