From: Neal Norwitz Date: Mon, 26 Feb 2007 23:12:28 +0000 (+0000) Subject: Add TODO X-Git-Tag: v3.0a1~1159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e36f2ba7c478646d3740fc2202b16ce6f1c06483;p=thirdparty%2FPython%2Fcpython.git Add TODO --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 36a18e43e03e..30022262c265 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;