[Python-checkins] cpython (3.3): whitespace

terry.reedy python-checkins at python.org
Mon Feb 17 22:50:24 CET 2014


http://hg.python.org/cpython/rev/a539e09be378
changeset:   89235:a539e09be378
branch:      3.3
parent:      89233:51e5a89afb3b
user:        Terry Jan Reedy <tjreedy at udel.edu>
date:        Mon Feb 17 16:49:06 2014 -0500
summary:
  whitespace

files:
  Lib/test/test_tokenize.py |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py
--- a/Lib/test/test_tokenize.py
+++ b/Lib/test/test_tokenize.py
@@ -1154,14 +1154,14 @@
         self.assertExactTypeEqual('@          ', token.AT)
 
 class UntokenizeTest(TestCase):
-    
+
     def test_bad_input_order(self):
         u = Untokenizer()
         u.prev_row = 2
         u.prev_col = 2
         with self.assertRaises(ValueError) as cm:
             u.add_whitespace((1,3))
-        self.assertEqual(cm.exception.args[0], 
+        self.assertEqual(cm.exception.args[0],
                 'start (1,3) precedes previous end (2,2)')
         self.assertRaises(ValueError, u.add_whitespace, (2,1))
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list