[Zope3-checkins] CVS: Zope3/src/zope/app/interfaces - forms.py:1.3
Steve Alexander
steve@cat-box.net
Fri, 3 Jan 2003 12:47:24 -0500
Update of /cvs-repository/Zope3/src/zope/app/interfaces
In directory cvs.zope.org:/tmp/cvs-serv18059/src/zope/app/interfaces
Modified Files:
forms.py
Log Message:
nicer formatting
=== Zope3/src/zope/app/interfaces/forms.py 1.2 => 1.3 ===
--- Zope3/src/zope/app/interfaces/forms.py:1.2 Wed Dec 25 09:12:56 2002
+++ Zope3/src/zope/app/interfaces/forms.py Fri Jan 3 12:47:21 2003
@@ -16,6 +16,8 @@
$Id$
"""
+from zope.component.interfaces import IView
+from zope.interface import Attribute
class WidgetInputError(Exception):
"""There were one or more user input errors
@@ -68,13 +70,6 @@
class WidgetsError(ErrorContainer):
"""A collection of errors from widget processing.
"""
-
-
-"""
-$Id$
-"""
-from zope.component.interfaces import IView
-from zope.interface import Attribute
class IWidget(IView):
"""Generically describes the behavior of a widget.