[Python-3000-checkins] r53972 - python/branches/p3yk/Objects/dictobject.c

neal.norwitz python-3000-checkins at python.org
Tue Feb 27 00:12:32 CET 2007


Author: neal.norwitz
Date: Tue Feb 27 00:12:28 2007
New Revision: 53972

Modified:
   python/branches/p3yk/Objects/dictobject.c
Log:
Add TODO

Modified: python/branches/p3yk/Objects/dictobject.c
==============================================================================
--- python/branches/p3yk/Objects/dictobject.c	(original)
+++ python/branches/p3yk/Objects/dictobject.c	Tue Feb 27 00:12:28 2007
@@ -2438,6 +2438,14 @@
 	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;


More information about the Python-3000-checkins mailing list