summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2007-02-26 23:12:28 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2007-02-26 23:12:28 (GMT)
commite36f2ba7c478646d3740fc2202b16ce6f1c06483 (patch)
tree55094dd503051bbd8b1864269dda4a84af030539
parent2633c69fae7e413b2b64b01d8c0c901ae649a225 (diff)
downloadcpython-e36f2ba7c478646d3740fc2202b16ce6f1c06483.zip
cpython-e36f2ba7c478646d3740fc2202b16ce6f1c06483.tar.gz
cpython-e36f2ba7c478646d3740fc2202b16ce6f1c06483.tar.bz2
Add TODO
-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;