[Zope3-checkins] CVS: Zope/lib/python/ZODB -
ExportImport.py:1.16.20.1
Shane Hathaway
shane at zope.com
Mon Apr 12 13:52:31 EDT 2004
Update of /cvs-repository/Zope/lib/python/ZODB
In directory cvs.zope.org:/tmp/cvs-serv23940
Modified Files:
Tag: Zope-2_7-branch
ExportImport.py
Log Message:
Fixed a missing import and removed an unnecessary import of 'string'
=== Zope/lib/python/ZODB/ExportImport.py 1.16 => 1.16.20.1 ===
--- Zope/lib/python/ZODB/ExportImport.py:1.16 Fri Jan 17 12:23:14 2003
+++ Zope/lib/python/ZODB/ExportImport.py Mon Apr 12 13:52:30 2004
@@ -15,7 +15,8 @@
"""Support for database export and import.
"""
-import POSException, string
+import sys
+import POSException
from utils import p64, u64
from referencesf import referencesf
@@ -102,7 +103,6 @@
def persistent_load(ooid,
Ghost=Ghost,
- atoi=string.atoi,
oids=oids, wrote_oid=oids.has_key,
new_oid=storage.new_oid):
More information about the Zope3-Checkins
mailing list