[Python-checkins] r43457 - in python/trunk/Lib: distutils/command/install_egg_info.py test/leakers/test_generator_cycle.py test/test_augassign.py test/test_coercion.py test/test_decimal.py test/test_index.py

anthony.baxter python-checkins at python.org
Thu Mar 30 14:59:12 CEST 2006


Author: anthony.baxter
Date: Thu Mar 30 14:59:11 2006
New Revision: 43457

Modified:
   python/trunk/Lib/distutils/command/install_egg_info.py
   python/trunk/Lib/test/leakers/test_generator_cycle.py
   python/trunk/Lib/test/test_augassign.py
   python/trunk/Lib/test/test_coercion.py
   python/trunk/Lib/test/test_decimal.py
   python/trunk/Lib/test/test_index.py
Log:
whitespace normalisation

Modified: python/trunk/Lib/distutils/command/install_egg_info.py
==============================================================================
--- python/trunk/Lib/distutils/command/install_egg_info.py	(original)
+++ python/trunk/Lib/distutils/command/install_egg_info.py	Thu Mar 30 14:59:11 2006
@@ -26,7 +26,7 @@
             to_filename(safe_version(self.distribution.get_version())),
             sys.version[:3]
         )
-        self.target = os.path.join(self.install_dir, basename) 
+        self.target = os.path.join(self.install_dir, basename)
         self.outputs = [self.target]
 
     def run(self):
@@ -40,7 +40,7 @@
             f = open(target, 'w')
             self.distribution.metadata.write_pkg_file(f)
             f.close()
-            
+
     def get_outputs(self):
         return self.outputs
 

Modified: python/trunk/Lib/test/leakers/test_generator_cycle.py
==============================================================================
--- python/trunk/Lib/test/leakers/test_generator_cycle.py	(original)
+++ python/trunk/Lib/test/leakers/test_generator_cycle.py	Thu Mar 30 14:59:11 2006
@@ -8,4 +8,3 @@
         while True:
             yield g
     g = gen()
-

Modified: python/trunk/Lib/test/test_augassign.py
==============================================================================
--- python/trunk/Lib/test/test_augassign.py	(original)
+++ python/trunk/Lib/test/test_augassign.py	Thu Mar 30 14:59:11 2006
@@ -64,7 +64,7 @@
         x *= 2
 
         self.assertEquals(x, [1, 2, 3, 4, 1, 2, 3, 4])
-        
+
         x = [1, 2, 3]
         y = x
         x[1:2] *= 2
@@ -82,7 +82,7 @@
                 return self.val + val
             def __add__(self, val):
                 return aug_test(self.val + val)
-        
+
         class aug_test2(aug_test):
             def __iadd__(self, val):
                 self.val = self.val + val
@@ -91,7 +91,7 @@
         class aug_test3(aug_test):
             def __iadd__(self, val):
                 return aug_test3(self.val + val)
-        
+
         x = aug_test(1)
         y = x
         x += 10
@@ -103,7 +103,7 @@
         x = aug_test2(2)
         y = x
         x += 10
-        
+
         self.assert_(y is x)
         self.assertEquals(x.val, 12)
 
@@ -319,7 +319,7 @@
 __rlshift__ called
 __ilshift__ called
 '''.splitlines())
-                          
+
 def test_main():
     run_unittest(AugAssignTest)
 

Modified: python/trunk/Lib/test/test_coercion.py
==============================================================================
--- python/trunk/Lib/test/test_coercion.py	(original)
+++ python/trunk/Lib/test/test_coercion.py	Thu Mar 30 14:59:11 2006
@@ -181,7 +181,7 @@
     (6,8): ('e', (6,0)),
 
     # MethodNumber(2)
-    (7,0): ('e', (0,0)), 
+    (7,0): ('e', (0,0)),
     (7,1): ('e', (0,1)),
     (7,2): ('e', (0,2)),
     (7,3): ('e', (0,3)),
@@ -192,7 +192,7 @@
     (7,8): ('e', (0,8)),
 
     # CoerceNumber(2)
-    (8,0): ('e', (0,0)), 
+    (8,0): ('e', (0,0)),
     (8,1): ('e', (0,1)),
     (8,2): ('e', (0,2)),
     (8,3): ('e', (0,3)),
@@ -223,8 +223,8 @@
                         res[i][6] = res[i][6][1]
             infix_results[key] = res
 
-        
-        
+
+
 process_infix_results()
 # now infix_results has two lists of results for every pairing.
 

Modified: python/trunk/Lib/test/test_decimal.py
==============================================================================
--- python/trunk/Lib/test/test_decimal.py	(original)
+++ python/trunk/Lib/test/test_decimal.py	Thu Mar 30 14:59:11 2006
@@ -517,7 +517,7 @@
         else:
             # testing with -Qnew, so add __truediv__
             oplist.append(('/', '__truediv__', '__rtruediv__'))
-        
+
         for sym, lop, rop in oplist:
             setattr(E, lop, lambda self, other: 'str' + lop + str(other))
             setattr(E, rop, lambda self, other: str(other) + rop + 'str')

Modified: python/trunk/Lib/test/test_index.py
==============================================================================
--- python/trunk/Lib/test/test_index.py	(original)
+++ python/trunk/Lib/test/test_index.py	Thu Mar 30 14:59:11 2006
@@ -17,7 +17,7 @@
         self.n = newstyle()
         self.o2 = oldstyle()
         self.n2 = newstyle()
-    
+
     def test_basic(self):
         self.o.ind = -2
         self.n.ind = 2
@@ -25,7 +25,7 @@
         assert(self.seq[self.o] == 40)
         assert(operator.index(self.o) == -2)
         assert(operator.index(self.n) == 2)
-        
+
     def test_error(self):
         self.o.ind = 'dumb'
         self.n.ind = 'bad'
@@ -50,8 +50,8 @@
         self.n = newstyle()
         self.o2 = oldstyle()
         self.n2 = newstyle()
-        
-    
+
+
     def test_basic(self):
         self.o.ind = -2
         self.n.ind = 2
@@ -59,7 +59,7 @@
         assert(self.seq[self.o] == 40)
         assert(operator.index(self.o) == -2)
         assert(operator.index(self.n) == 2)
-        
+
     def test_error(self):
         self.o.ind = 'dumb'
         self.n.ind = 'bad'
@@ -84,8 +84,8 @@
         self.n = newstyle()
         self.o2 = oldstyle()
         self.n2 = newstyle()
-        
-    
+
+
     def test_basic(self):
         self.o.ind = -2
         self.n.ind = 2
@@ -93,7 +93,7 @@
         assert(self.seq[self.o] == self.seq[-2])
         assert(operator.index(self.o) == -2)
         assert(operator.index(self.n) == 2)
-        
+
     def test_error(self):
         self.o.ind = 'dumb'
         self.n.ind = 'bad'
@@ -119,8 +119,8 @@
         self.n = newstyle()
         self.o2 = oldstyle()
         self.n2 = newstyle()
-        
-    
+
+
     def test_basic(self):
         self.o.ind = -2
         self.n.ind = 2
@@ -128,7 +128,7 @@
         assert(self.seq[self.o] == self.seq[-2])
         assert(operator.index(self.o) == -2)
         assert(operator.index(self.n) == 2)
-        
+
     def test_error(self):
         self.o.ind = 'dumb'
         self.n.ind = 'bad'


More information about the Python-checkins mailing list