[Zope3-checkins] CVS: Zope3/src/zope/app/utilities - content.py:1.3
mutableschemafield.py:1.3 schema.py:1.3
Philipp von Weitershausen
philikon at philikon.de
Sun Aug 17 03:09:40 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/utilities
In directory cvs.zope.org:/tmp/cvs-serv7189/app/utilities
Modified Files:
content.py mutableschemafield.py schema.py
Log Message:
Removed unused imports.
=== Zope3/src/zope/app/utilities/content.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/utilities/content.py:1.2 Fri Aug 15 20:44:21 2003
+++ Zope3/src/zope/app/utilities/content.py Sun Aug 17 02:08:33 2003
@@ -28,9 +28,8 @@
from zope.app.services.utility import UtilityRegistration
from zope.context import ContextMethod
from zope.interface import directlyProvides, implements
-from zope.schema import getFields, getFieldsInOrder
+from zope.schema import getFields
from zope.security.checker import CheckerPublic, Checker, defineChecker
-from zope.security.proxy import trustedRemoveSecurityProxy
class ContentComponentDefinition(Persistent):
=== Zope3/src/zope/app/utilities/mutableschemafield.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/utilities/mutableschemafield.py:1.2 Fri Aug 15 20:44:21 2003
+++ Zope3/src/zope/app/utilities/mutableschemafield.py Sun Aug 17 02:08:33 2003
@@ -16,8 +16,7 @@
$Id$
"""
-from zope.schema import Enumerated, Field, Tuple
-from zope.interface import Interface, implements
+from zope.interface import implements
from zope.interface.interfaces import IInterface
from zope.interface import providedBy
from zope.schema.interfaces import ValidationError
=== Zope3/src/zope/app/utilities/schema.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/utilities/schema.py:1.2 Fri Aug 15 20:44:21 2003
+++ Zope3/src/zope/app/utilities/schema.py Sun Aug 17 02:08:33 2003
@@ -19,7 +19,6 @@
from zope.app import zapi
from zope.app.introspector import nameToInterface, interfaceToName
from zope.app.browser.container.adding import Adding
-from zope.app.i18n import ZopeMessageIDFactory as _
from zope.app.utilities.interfaces import IMutableSchemaContent
from zope.app.interfaces.utilities.schema import \
ISchemaAdding, IMutableSchema, ISchemaUtility
@@ -29,9 +28,7 @@
from zope.context import ContextMethod
from zope.interface import implements
from zope.interface import directlyProvides, directlyProvidedBy
-from zope.proxy import removeAllProxies
from zope.schema import getFieldsInOrder, getFieldNamesInOrder
-from zope.component.exceptions import ComponentLookupError
class SchemaUtility(PersistentInterfaceClass):
More information about the Zope3-Checkins
mailing list