[Zope3-checkins] CVS: Zope3/src/zope/app/http/exception - notfound.py:1.1.14.1 unauthorized.py:1.1.16.1

Grégoire Weber zope@i-con.ch
Sun, 22 Jun 2003 10:24:08 -0400


Update of /cvs-repository/Zope3/src/zope/app/http/exception
In directory cvs.zope.org:/tmp/cvs-serv24874/src/zope/app/http/exception

Modified Files:
      Tag: cw-mail-branch
	notfound.py unauthorized.py 
Log Message:
Synced up with HEAD

=== Zope3/src/zope/app/http/exception/notfound.py 1.1 => 1.1.14.1 ===
--- Zope3/src/zope/app/http/exception/notfound.py:1.1	Wed Apr  2 15:37:43 2003
+++ Zope3/src/zope/app/http/exception/notfound.py	Sun Jun 22 10:23:06 2003
@@ -18,10 +18,11 @@
 __metaclass__ = type
 
 from zope.app.interfaces.http import IHTTPException
+from zope.interface import implements
 
 class NotFound:
 
-    __implements__ = IHTTPException
+    implements(IHTTPException)
 
     def __init__(self, context, request):
         self.context = context


=== Zope3/src/zope/app/http/exception/unauthorized.py 1.1 => 1.1.16.1 ===
--- Zope3/src/zope/app/http/exception/unauthorized.py:1.1	Sat Mar 29 12:03:59 2003
+++ Zope3/src/zope/app/http/exception/unauthorized.py	Sun Jun 22 10:23:06 2003
@@ -18,10 +18,11 @@
 __metaclass__ = type
 
 from zope.app.interfaces.http import IHTTPException
+from zope.interface import implements
 
 class Unauthorized:
 
-    __implements__ = IHTTPException
+    implements(IHTTPException)
 
     def __init__(self, context, request):
         self.context = context