Update of /cvs-repository/Products/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv13308/CMFCore

Modified Files:
        ActionInformation.py 
Log Message:
overrode copy to make sure _lazy_keys is a copy


=== Products/CMFCore/ActionInformation.py 1.28 => 1.29 ===
--- Products/CMFCore/ActionInformation.py:1.28  Wed Mar 16 06:09:46 2005
+++ Products/CMFCore/ActionInformation.py       Fri Jun 24 12:09:00 2005
@@ -221,6 +221,11 @@
         else:
             return self.data == other
 
+    def copy(self):
+        c = UserDict.copy(self)
+        c._lazy_keys = self._lazy_keys[:]
+        return c
+
     def _checkPermissions(self, ec):
         """ Check permissions in the current context.
         """

_______________________________________________
CMF-checkins mailing list
[email protected]
http://mail.zope.org/mailman/listinfo/cmf-checkins

Reply via email to