[CMF-checkins] CVS: Products/CMFCore - ActionInformation.py:1.26.2.3
Yvo Schubbe
y.2005- at wcm-solutions.de
Thu Jun 23 04:25:27 EDT 2005
Update of /cvs-repository/Products/CMFCore
In directory cvs.zope.org:/tmp/cvs-serv29035/CMFCore
Modified Files:
Tag: CMF-1_5-branch
ActionInformation.py
Log Message:
overrode copy to make sure _lazy_keys is a copy
=== Products/CMFCore/ActionInformation.py 1.26.2.2 => 1.26.2.3 ===
--- Products/CMFCore/ActionInformation.py:1.26.2.2 Wed Mar 16 06:33:52 2005
+++ Products/CMFCore/ActionInformation.py Thu Jun 23 04:24:56 2005
@@ -100,6 +100,11 @@
else:
return self.data == other
+ def copy(self):
+ c = UserDict.copy(self)
+ c._lazy_keys = self._lazy_keys[:]
+ return c
+
def _getURL(self):
""" Get the result of the URL expression in the current context.
"""
More information about the CMF-checkins
mailing list