[Zope-Checkins] CVS: Zope/lib/python/Interface/Common/tests - BaseTestMapping.py:1.3 __init__.py:1.3

Martijn Pieters mj@zope.com
Wed, 14 Aug 2002 17:36:04 -0400


Update of /cvs-repository/Zope/lib/python/Interface/Common/tests
In directory cvs.zope.org:/tmp/cvs-serv14060/Common/tests

Modified Files:
	BaseTestMapping.py __init__.py 
Log Message:
Clean up indentation and trailing whitespace.


=== Zope/lib/python/Interface/Common/tests/BaseTestMapping.py 1.2 => 1.3 ===
--- Zope/lib/python/Interface/Common/tests/BaseTestMapping.py:1.2	Fri Jun  7 13:18:29 2002
+++ Zope/lib/python/Interface/Common/tests/BaseTestMapping.py	Wed Aug 14 17:35:33 2002
@@ -2,14 +2,14 @@
 #
 # Copyright (c) 2001, 2002 Zope Corporation and Contributors.
 # All Rights Reserved.
-# 
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 # FOR A PARTICULAR PURPOSE.
-# 
+#
 ##############################################################################
 """
 
@@ -30,7 +30,7 @@
         self.assertEqual(inst.get(key, None), None)
         self.assertEqual(inst.get(key), None)
         self.assertEqual(inst.get(key, self), self)
-        self.assertRaises(KeyError, __getitem__, inst, key)        
+        self.assertRaises(KeyError, __getitem__, inst, key)
 
 
 def test_keys(self, inst, state):
@@ -75,7 +75,7 @@
 
         testIReadMapping(self, inst, state, absent)
 
-        
+
 
 
 class BaseTestIEnumerableMapping(BaseTestIReadMapping):


=== Zope/lib/python/Interface/Common/tests/__init__.py 1.2 => 1.3 ===
--- Zope/lib/python/Interface/Common/tests/__init__.py:1.2	Fri Jun  7 13:18:29 2002
+++ Zope/lib/python/Interface/Common/tests/__init__.py	Wed Aug 14 17:35:33 2002
@@ -2,13 +2,12 @@
 #
 # Copyright (c) 2001, 2002 Zope Corporation and Contributors.
 # All Rights Reserved.
-# 
+#
 # This software is subject to the provisions of the Zope Public License,
 # Version 2.0 (ZPL).  A copy of the ZPL should accompany this distribution.
 # THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 # WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 # WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 # FOR A PARTICULAR PURPOSE.
-# 
+#
 ##############################################################################
-