[Zope3-checkins] CVS: Zope3/src/zope/app/container - size.py:1.2

Steve Alexander steve@cat-box.net
Wed, 12 Mar 2003 05:04:48 -0500


Update of /cvs-repository/Zope3/src/zope/app/container
In directory cvs.zope.org:/tmp/cvs-serv11034/src/zope/app/container

Modified Files:
	size.py 
Log Message:
pruned whitespace


=== Zope3/src/zope/app/container/size.py 1.1 => 1.2 ===
--- Zope3/src/zope/app/container/size.py:1.1	Fri Dec 27 13:22:58 2002
+++ Zope3/src/zope/app/container/size.py	Wed Mar 12 05:04:46 2003
@@ -24,14 +24,14 @@
 class ContainerSized:
 
     __implements__ = ISized
-    
+
     def __init__(self, container):
         self._container = container
 
     def sizeForSorting(self):
         """See ISized"""
         return ('item', len(self._container))
-        
+
     def sizeForDisplay(self):
         """See ISized"""
         num_items = len(self._container)