[Zodb-checkins] CVS: ZODB4/src/zodb/storage/tests - basic.py:1.3
Barry Warsaw
barry@wooz.org
Wed, 22 Jan 2003 14:47:05 -0500
Update of /cvs-repository/ZODB4/src/zodb/storage/tests
In directory cvs.zope.org:/tmp/cvs-serv12696
Modified Files:
basic.py
Log Message:
cleanup copyrights and imports
=== ZODB4/src/zodb/storage/tests/basic.py 1.2 => 1.3 ===
--- ZODB4/src/zodb/storage/tests/basic.py:1.2 Wed Dec 25 09:12:20 2002
+++ ZODB4/src/zodb/storage/tests/basic.py Wed Jan 22 14:47:02 2003
@@ -1,6 +1,6 @@
##############################################################################
#
-# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
+# Copyright (c) 2001 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
@@ -11,6 +11,7 @@
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
+
"""Run the basic tests for a storage as described in the official storage API
The most complete and most out-of-date description of the interface is:
@@ -21,14 +22,13 @@
$Id$
"""
-from zodb.ztransaction import Transaction
from zodb import interfaces
+from zodb.ztransaction import Transaction
+from zodb.storage.base import ZERO
from zodb.storage.tests.minpo import MinPO
from zodb.storage.tests.base \
import zodb_unpickle, zodb_pickle, handle_serials
-
-ZERO = '\0'*8