]> granicus.if.org Git - python/commitdiff
Add TODO
authorNeal Norwitz <nnorwitz@gmail.com>
Mon, 26 Feb 2007 23:12:28 +0000 (23:12 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Mon, 26 Feb 2007 23:12:28 +0000 (23:12 +0000)
Objects/dictobject.c

index 36a18e43e03e67a9864e596a0ff66dcbc7c82479..30022262c26568ea79a42b7876d37521fed7e488 100644 (file)
@@ -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;