[Zope-CVS] CVS: Products/AdaptableStorage/mapper - SerializationEvent.py:1.3
Shane Hathaway
shane@zope.com
Mon, 3 Feb 2003 13:27:20 -0500
Update of /cvs-repository/Products/AdaptableStorage/mapper
In directory cvs.zope.org:/tmp/cvs-serv10265/mapper
Modified Files:
SerializationEvent.py
Log Message:
Integrated work by Christian Zagrodnick: added mappers for Python Scripts,
DTML Methods, DTML Documents, and ZSQLMethods. Thanks!
=== Products/AdaptableStorage/mapper/SerializationEvent.py 1.2 => 1.3 ===
--- Products/AdaptableStorage/mapper/SerializationEvent.py:1.2 Mon Jan 6 09:55:09 2003
+++ Products/AdaptableStorage/mapper/SerializationEvent.py Mon Feb 3 13:26:48 2003
@@ -88,6 +88,11 @@
"""See the ISerializationEvent interface."""
self._attrs[name] = 1
+ def ignoreAttributes(self, names):
+ """See the ISerializationEvent interface."""
+ for name in names:
+ self._attrs[name] = 1
+
def getExternalRefs(self):
"""Returns the list of external references"""
return self._refs