Add TODO
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 @@
 	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;