SVN: ZODB/branches/jim-thready-zeo2/src/ZODB/DemoStorage.test Don't close storages until you're done using them. :)
Jim Fulton <[email protected]>
| Newsgroups | gmane.comp.python.zope.zodb.cvs |
|---|---|
| Message-ID | <20091001205457.2E904941BB__12843.7163927176$1254430508$gmane$org@cvs.zope.org> |
Log message for revision 104711:
Don't close storages until you're done using them. :)
Changed:
U ZODB/branches/jim-thready-zeo2/src/ZODB/DemoStorage.test
-=-
Modified: ZODB/branches/jim-thready-zeo2/src/ZODB/DemoStorage.test
===================================================================
--- ZODB/branches/jim-thready-zeo2/src/ZODB/DemoStorage.test 2009-10-01 20:09:00 UTC (rev 104710)
+++ ZODB/branches/jim-thready-zeo2/src/ZODB/DemoStorage.test 2009-10-01 20:54:56 UTC (rev 104711)
@@ -337,9 +337,7 @@
>>> storage.base.getName()
'base.fs'
- >>> storage.close()
-
Generating OIDs
===============
@@ -393,3 +391,7 @@
.. restore time
>>> time.time = real_time_time
+
+.. clean up
+
+ >>> storage.close()