[Zope-CVS] CVS: Products/AdaptableStorage/mapper_std - RollCall.py:1.3
Shane Hathaway
shane@zope.com
Thu, 20 Feb 2003 12:51:36 -0500
Update of /cvs-repository/Products/AdaptableStorage/mapper_std
In directory cvs.zope.org:/tmp/cvs-serv12667/mapper_std
Modified Files:
RollCall.py
Log Message:
Renamed tracker argument to event
=== Products/AdaptableStorage/mapper_std/RollCall.py 1.2 => 1.3 ===
--- Products/AdaptableStorage/mapper_std/RollCall.py:1.2 Mon Jan 6 10:36:47 2003
+++ Products/AdaptableStorage/mapper_std/RollCall.py Thu Feb 20 12:51:33 2003
@@ -33,9 +33,9 @@
def canSerialize(self, object):
return 1
- def serialize(self, object, tracker):
- assert IFullSerializationEvent.isImplementedBy(tracker)
- attrs = tracker.getSerializedAttributeNames()
+ def serialize(self, object, event):
+ assert IFullSerializationEvent.isImplementedBy(event)
+ attrs = event.getSerializedAttributeNames()
attrs_map = {}
for attr in attrs:
attrs_map[attr] = 1
@@ -49,7 +49,7 @@
(', '.join(missed), repr(object)))
return None
- def deserialize(self, object, tracker, state):
+ def deserialize(self, object, event, state):
assert state is None