[CMF-checkins] CVS: Products/CMFCore - ActionInformation.py:1.29
Yvo Schubbe
y.2005- at wcm-solutions.de
Fri Jun 24 12:09:31 EDT 2005
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.
"""
More information about the CMF-checkins
mailing list