[Zope-Checkins] CVS: Products/AdaptableStorage/zodb - ASConnection.py:1.14

Shane Hathaway shane@zope.com
Mon, 6 Jan 2003 18:17:59 -0500


Update of /cvs-repository/Products/AdaptableStorage/zodb
In directory cvs.zope.org:/tmp/cvs-serv1755/zodb

Modified Files:
	ASConnection.py 
Log Message:
- Added a user folder mapper for the filesystem.  SQL version coming
  soon.  (SQL tests fail at the moment.)

- Added unwriteData() to FSConnection.  I may remove it later, since it turned
  out I didn't need it.

- Made configuration errors easier to read.

- Added null implementations of certain interfaces.

- Added a default for FixedClassifier.


=== Products/AdaptableStorage/zodb/ASConnection.py 1.13 => 1.14 ===
--- Products/AdaptableStorage/zodb/ASConnection.py:1.13	Mon Jan  6 11:12:27 2003
+++ Products/AdaptableStorage/zodb/ASConnection.py	Mon Jan  6 18:17:55 2003
@@ -272,7 +272,7 @@
             # serial number for a newly created object
             try: cache[oid]=object
             except:
-                # Dang, I bet its wrapped:
+                # It could be wrapped.
                 if hasattr(object, 'aq_base'):
                     cache[oid]=object.aq_base
                 else: