[Zope-CVS] CVS: Products/AdaptableStorage/tests - SerialTestBase.py:1.2

Shane Hathaway shane@zope.com
Wed, 4 Dec 2002 23:18:09 -0500


Update of /cvs-repository/Products/AdaptableStorage/tests
In directory cvs.zope.org:/tmp/cvs-serv26322/tests

Modified Files:
	SerialTestBase.py 
Log Message:
- Switched to use of the "remaining state" aspect, enabling storage of
any extra data found on ZODB objects.  Fixed bugs related to this.

- Made sure Zope 2 objects store their classification.

- Modified the serialization event interface a little to allow more
control over automatic references.  This needs work still.

- MetaTypeClassifier is now also an IAspectSerializer, making it
possible to delegate classification details to the classifier.



=== Products/AdaptableStorage/tests/SerialTestBase.py 1.1 => 1.2 ===
--- Products/AdaptableStorage/tests/SerialTestBase.py:1.1	Wed Nov 27 13:37:08 2002
+++ Products/AdaptableStorage/tests/SerialTestBase.py	Wed Dec  4 23:18:09 2002
@@ -40,7 +40,7 @@
         res = object.items()
         res.sort()
         for k, v in res:
-            event.notifySerialized(k, v)
+            event.notifySerialized(k, v, 0)
         event.ignoreAttribute('data')
         event.ignoreAttribute('_container')
         return res