This commit is contained in:
Neal Norwitz 2007-02-26 23:12:28 +00:00
parent 2633c69fae
commit e36f2ba7c4
1 changed files with 8 additions and 0 deletions

View 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;