[Zope3-checkins] CVS: Zope3/src/zope/fssync - bundle.py:1.3 fsmerger.py:1.15 fssync.py:1.42 metadata.py:1.10

Philipp von Weitershausen philikon at philikon.de
Sun Aug 17 03:09:32 EDT 2003


Update of /cvs-repository/Zope3/src/zope/fssync
In directory cvs.zope.org:/tmp/cvs-serv7189/fssync

Modified Files:
	bundle.py fsmerger.py fssync.py metadata.py 
Log Message:
Removed unused imports.


=== Zope3/src/zope/fssync/bundle.py 1.2 => 1.3 ===
--- Zope3/src/zope/fssync/bundle.py:1.2	Fri Aug 15 18:23:15 2003
+++ Zope3/src/zope/fssync/bundle.py	Sun Aug 17 02:08:56 2003
@@ -24,8 +24,6 @@
 $Id$
 """
 
-import os
-
 from zope.fssync.command import Command, Usage
 from zope.fssync.fsbundle import FSBundle
 


=== Zope3/src/zope/fssync/fsmerger.py 1.14 => 1.15 ===
--- Zope3/src/zope/fssync/fsmerger.py:1.14	Mon Aug 11 18:02:08 2003
+++ Zope3/src/zope/fssync/fsmerger.py	Sun Aug 17 02:08:56 2003
@@ -19,7 +19,7 @@
 import os
 import shutil
 
-from os.path import exists, isfile, isdir, split, join
+from os.path import exists, isfile, isdir, join
 from os.path import realpath, normcase, normpath
 
 from zope.xmlpickle import dumps


=== Zope3/src/zope/fssync/fssync.py 1.41 => 1.42 ===
--- Zope3/src/zope/fssync/fssync.py:1.41	Tue Aug 12 16:49:15 2003
+++ Zope3/src/zope/fssync/fssync.py	Sun Aug 17 02:08:56 2003
@@ -28,16 +28,13 @@
 import htmllib
 import httplib
 import tempfile
-import urlparse
 import formatter
 
 from StringIO import StringIO
 
-from os.path import exists, isfile, isdir, islink
+from os.path import exists, isfile, isdir
 from os.path import dirname, basename, split, join
 from os.path import realpath, normcase, normpath
-
-from zope.xmlpickle import dumps
 
 from zope.fssync.metadata import Metadata, dump_entries
 from zope.fssync.fsmerger import FSMerger


=== Zope3/src/zope/fssync/metadata.py 1.9 => 1.10 ===
--- Zope3/src/zope/fssync/metadata.py:1.9	Fri Aug 15 18:23:15 2003
+++ Zope3/src/zope/fssync/metadata.py	Sun Aug 17 02:08:56 2003
@@ -27,7 +27,7 @@
 import copy
 
 from cStringIO import StringIO
-from os.path import exists, isdir, isfile, split, join, realpath, normcase
+from os.path import exists, isfile, split, join, realpath, normcase
 from xml.sax import ContentHandler, parse, parseString
 from xml.sax.saxutils import quoteattr
 




More information about the Zope3-Checkins mailing list