[Zope3-checkins] CVS: Zope3/src/ZConfig - __init__.py:1.9 matcher.py:1.12 schema.py:1.20
Martijn Faassen
m.faassen@vet.uu.nl
Thu, 1 May 2003 15:35:57 -0400
Update of /cvs-repository/Zope3/src/ZConfig
In directory cvs.zope.org:/tmp/cvs-serv30407/ZConfig
Modified Files:
__init__.py matcher.py schema.py
Log Message:
Importgeddon part the second. Removed unused imports throughout the
source tree. This should have taken care of most unused imports
in Zope 3. :)
=== Zope3/src/ZConfig/__init__.py 1.8 => 1.9 ===
--- Zope3/src/ZConfig/__init__.py:1.8 Sat Apr 12 22:25:22 2003
+++ Zope3/src/ZConfig/__init__.py Thu May 1 15:34:56 2003
@@ -15,10 +15,8 @@
$Id$
"""
-
from ZConfig.loader import loadConfig, loadConfigFile
from ZConfig.loader import loadSchema, loadSchemaFile
-
class ConfigurationError(Exception):
def __init__(self, msg):
=== Zope3/src/ZConfig/matcher.py 1.11 => 1.12 ===
--- Zope3/src/ZConfig/matcher.py:1.11 Mon Mar 24 11:57:59 2003
+++ Zope3/src/ZConfig/matcher.py Thu May 1 15:34:57 2003
@@ -13,8 +13,6 @@
##############################################################################
"""Utility that manages the binding of configuration data to a section."""
-import types
-
import ZConfig
from ZConfig.info import ValueInfo
=== Zope3/src/ZConfig/schema.py 1.19 => 1.20 ===
--- Zope3/src/ZConfig/schema.py:1.19 Wed Apr 30 13:57:14 2003
+++ Zope3/src/ZConfig/schema.py Thu May 1 15:34:57 2003
@@ -14,7 +14,6 @@
"""Parser for ZConfig schemas."""
import xml.sax
-import xml.sax.saxutils
import ZConfig