[Python-checkins] cpython (3.3): normalize whitespace

senthil.kumaran python-checkins at python.org
Thu Apr 11 05:56:39 CEST 2013


http://hg.python.org/cpython/rev/e20fdbd15497
changeset:   83244:e20fdbd15497
branch:      3.3
parent:      83241:5f8fe382f9db
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Wed Apr 10 20:55:58 2013 -0700
summary:
  normalize whitespace

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


diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
--- a/Lib/test/test_urllib.py
+++ b/Lib/test/test_urllib.py
@@ -1340,7 +1340,7 @@
                          r'C:\foo\bar\spam.foo'
                          ]
         for path in list_of_paths:
-                self.assertEqual(url2pathname(pathname2url(path)), path)
+            self.assertEqual(url2pathname(pathname2url(path)), path)
 
 class PathName2URLTests(unittest.TestCase):
 
@@ -1368,7 +1368,7 @@
                          '/////folder/test/',
                          '///C:/foo/bar/spam.foo']
         for path in list_of_paths:
-                self.assertEqual(pathname2url(url2pathname(path)), path)
+            self.assertEqual(pathname2url(url2pathname(path)), path)
 
 if __name__ == '__main__':
     unittest.main()

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


More information about the Python-checkins mailing list