[Checkins] SVN: zope.schema/trunk/src/zope/schema/interfaces.py whitespace

Christian Zagrodnick cz at gocept.com
Fri Jun 8 07:39:14 EDT 2007


Log message for revision 76488:
  whitespace
  

Changed:
  U   zope.schema/trunk/src/zope/schema/interfaces.py

-=-
Modified: zope.schema/trunk/src/zope/schema/interfaces.py
===================================================================
--- zope.schema/trunk/src/zope/schema/interfaces.py	2007-06-08 09:40:28 UTC (rev 76487)
+++ zope.schema/trunk/src/zope/schema/interfaces.py	2007-06-08 11:39:13 UTC (rev 76488)
@@ -404,31 +404,31 @@
 
 class IAbstractSet(IUnorderedCollection):
     u"""An unordered collection of unique values."""
-    
+
     unique = Attribute(u"This ICollection interface attribute must be True")
 
 class IAbstractBag(IUnorderedCollection):
     u"""An unordered collection of values, with no limitations on whether
     members are unique"""
-    
+
     unique = Attribute(u"This ICollection interface attribute must be False")
 
 # Concrete
 
 class ITuple(ISequence):
-    u"""Field containing a value that implements the API of a conventional 
+    u"""Field containing a value that implements the API of a conventional
     Python tuple."""
 
 class IList(ISequence):
-    u"""Field containing a value that implements the API of a conventional 
+    u"""Field containing a value that implements the API of a conventional
     Python list."""
 
 class ISet(IAbstractSet):
-    u"""Field containing a value that implements the API of a conventional 
+    u"""Field containing a value that implements the API of a conventional
     Python standard library sets.Set or a Python 2.4+ set."""
 
 class IFrozenSet(IAbstractSet):
-    u"""Field containing a value that implements the API of a conventional 
+    u"""Field containing a value that implements the API of a conventional
     Python 2.4+ frozenset."""
 
 # (end Collections)
@@ -478,7 +478,7 @@
 
 class ITitledTokenizedTerm(ITokenizedTerm):
     """A tokenized term that includes a title."""
-    
+
     title = TextLine(title=_(u"Title"))
 
 class ISource(Interface):
@@ -489,7 +489,7 @@
 
     Sources can be large (even infinite), in which case, they need to
     be queried to find out what their values are.
-    
+
     """
 
     def __contains__(value):
@@ -523,8 +523,8 @@
     def __call__(context):
         """Return a context-bound instance that implements ISource.
         """
-    
 
+
 class IBaseVocabulary(ISource):
     """Representation of a vocabulary.
 



More information about the Checkins mailing list