[Zope3-checkins] SVN: Zope3/trunk/src/zope/app/authentication/ Remove useless imports.

Florent Xicluna laxyf at yahoo.fr
Thu Sep 7 10:02:14 EDT 2006


Log message for revision 70031:
  Remove useless imports.
  Add missing svn:keywords 'Id'.
  Fix typo.
  
  

Changed:
  UU  Zope3/trunk/src/zope/app/authentication/browser/register.py
  U   Zope3/trunk/src/zope/app/authentication/generic.py
  U   Zope3/trunk/src/zope/app/authentication/vocabulary.py

-=-
Modified: Zope3/trunk/src/zope/app/authentication/browser/register.py
===================================================================
--- Zope3/trunk/src/zope/app/authentication/browser/register.py	2006-09-07 13:52:36 UTC (rev 70030)
+++ Zope3/trunk/src/zope/app/authentication/browser/register.py	2006-09-07 14:02:13 UTC (rev 70031)
@@ -11,7 +11,7 @@
 # FOR A PARTICULAR PURPOSE.
 #
 ##############################################################################
-"""Improved registration UI for registering pluggable autentication utilities
+"""Improved registration UI for registering pluggable authentication utilities
 
 $Id$
 """
@@ -20,8 +20,6 @@
 import zope.app.component.browser.registration
 import zope.app.security.interfaces
 
-import zope.app.authentication.interfaces
-
 class AddAuthenticationRegistration(
     zope.app.component.browser.registration.AddUtilityRegistration,
     ):


Property changes on: Zope3/trunk/src/zope/app/authentication/browser/register.py
___________________________________________________________________
Name: svn:keywords
   + Id

Modified: Zope3/trunk/src/zope/app/authentication/generic.py
===================================================================
--- Zope3/trunk/src/zope/app/authentication/generic.py	2006-09-07 13:52:36 UTC (rev 70030)
+++ Zope3/trunk/src/zope/app/authentication/generic.py	2006-09-07 14:02:13 UTC (rev 70031)
@@ -16,10 +16,8 @@
 $Id$
 """
 __docformat__ = "reStructuredText"
-from persistent import Persistent
 from zope.interface import implements
 
-from zope.app.container.contained import Contained
 from zope.app.security.interfaces import IUnauthenticatedPrincipal
 
 from zope.app.authentication import interfaces

Modified: Zope3/trunk/src/zope/app/authentication/vocabulary.py
===================================================================
--- Zope3/trunk/src/zope/app/authentication/vocabulary.py	2006-09-07 13:52:36 UTC (rev 70030)
+++ Zope3/trunk/src/zope/app/authentication/vocabulary.py	2006-09-07 14:02:13 UTC (rev 70031)
@@ -21,7 +21,6 @@
 
 import zope.dublincore.interfaces
 from zope import interface, component, i18n
-from zope.interface.interfaces import IInterface
 from zope.schema import vocabulary
 from zope.schema.interfaces import IVocabularyFactory
 



More information about the Zope3-Checkins mailing list