From e36f2ba7c478646d3740fc2202b16ce6f1c06483 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Mon, 26 Feb 2007 23:12:28 +0000 Subject: [PATCH] Add TODO --- Objects/dictobject.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 36a18e43e0..30022262c2 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; -- 2.50.1