[Zodb-checkins] CVS: ZODB3/ZODB/tests - testZODB.py:1.17
testFileStorage.py:1.35 testCache.py:1.16
TransactionalUndoVersionStorage.py:1.13
TransactionalUndoStorage.py:1.34
Jeremy Hylton
cvs-admin at zope.org
Mon Nov 3 13:57:01 EST 2003
Update of /cvs-repository/ZODB3/ZODB/tests
In directory cvs.zope.org:/tmp/cvs-serv10897/ZODB/tests
Modified Files:
testZODB.py testFileStorage.py testCache.py
TransactionalUndoVersionStorage.py TransactionalUndoStorage.py
Log Message:
Remove future statements. The future is now.
=== ZODB3/ZODB/tests/testZODB.py 1.16 => 1.17 ===
--- ZODB3/ZODB/tests/testZODB.py:1.16 Thu Oct 2 14:17:17 2003
+++ ZODB3/ZODB/tests/testZODB.py Mon Nov 3 13:56:29 2003
@@ -11,8 +11,6 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-from __future__ import nested_scopes
-
import unittest
import ZODB
=== ZODB3/ZODB/tests/testFileStorage.py 1.34 => 1.35 ===
--- ZODB3/ZODB/tests/testFileStorage.py:1.34 Thu Oct 2 14:17:17 2003
+++ ZODB3/ZODB/tests/testFileStorage.py Mon Nov 3 13:56:29 2003
@@ -11,8 +11,6 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-from __future__ import nested_scopes
-
import ZODB.FileStorage
import sys, os, unittest
import errno
=== ZODB3/ZODB/tests/testCache.py 1.15 => 1.16 ===
--- ZODB3/ZODB/tests/testCache.py:1.15 Thu Oct 2 14:17:17 2003
+++ ZODB3/ZODB/tests/testCache.py Mon Nov 3 13:56:29 2003
@@ -17,7 +17,6 @@
purposes. It acts like a memo for unpickling. It also keeps recent
objects in memory under the assumption that they may be used again.
"""
-from __future__ import nested_scopes
import time
import types
=== ZODB3/ZODB/tests/TransactionalUndoVersionStorage.py 1.12 => 1.13 ===
--- ZODB3/ZODB/tests/TransactionalUndoVersionStorage.py:1.12 Thu Oct 2 14:17:17 2003
+++ ZODB3/ZODB/tests/TransactionalUndoVersionStorage.py Mon Nov 3 13:56:29 2003
@@ -11,8 +11,6 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
-from __future__ import nested_scopes
-
# Check interactions between transactionalUndo() and versions. Any storage
# that supports both transactionalUndo() and versions must pass these tests.
=== ZODB3/ZODB/tests/TransactionalUndoStorage.py 1.33 => 1.34 ===
--- ZODB3/ZODB/tests/TransactionalUndoStorage.py:1.33 Thu Oct 2 14:17:17 2003
+++ ZODB3/ZODB/tests/TransactionalUndoStorage.py Mon Nov 3 13:56:29 2003
@@ -15,7 +15,6 @@
Any storage that supports transactionalUndo() must pass these tests.
"""
-from __future__ import nested_scopes
import time
import types
More information about the Zodb-checkins
mailing list