[Zope3-checkins] CVS: Zope3/src/zope/interface/common - mapping.py:1.4

Jim Fulton jim@zope.com
Mon, 3 Feb 2003 09:59:27 -0500


Update of /cvs-repository/Zope3/src/zope/interface/common
In directory cvs.zope.org:/tmp/cvs-serv14765

Modified Files:
	mapping.py 
Log Message:
Added __iter__ method.


=== Zope3/src/zope/interface/common/mapping.py 1.3 => 1.4 ===
--- Zope3/src/zope/interface/common/mapping.py:1.3	Thu Dec 26 15:20:49 2002
+++ Zope3/src/zope/interface/common/mapping.py	Mon Feb  3 09:59:24 2003
@@ -49,6 +49,10 @@
         """Return the keys of the mapping object
         """
 
+    def __iter__():
+        """Return an iterator for the keys of the mapping object
+        """
+
     def values():
         """Return the values of the mapping object
         """