[Python-checkins] cpython: Whitespace cleanup.

eric.smith python-checkins at python.org
Fri May 25 02:22:23 CEST 2012


http://hg.python.org/cpython/rev/9b1790de6efa
changeset:   77127:9b1790de6efa
user:        Eric V. Smith <eric at trueblade.com>
date:        Thu May 24 20:22:10 2012 -0400
summary:
  Whitespace cleanup.

files:
  Lib/importlib/test/frozen/test_loader.py |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Lib/importlib/test/frozen/test_loader.py b/Lib/importlib/test/frozen/test_loader.py
--- a/Lib/importlib/test/frozen/test_loader.py
+++ b/Lib/importlib/test/frozen/test_loader.py
@@ -11,7 +11,7 @@
         with util.uncache('__hello__'), captured_stdout() as stdout:
             module = machinery.FrozenImporter.load_module('__hello__')
             check = {'__name__': '__hello__',
-                    '__package__': '', 
+                    '__package__': '',
                     '__loader__': machinery.FrozenImporter,
                     }
             for attr, value in check.items():
@@ -22,8 +22,8 @@
     def test_package(self):
         with util.uncache('__phello__'),  captured_stdout() as stdout:
             module = machinery.FrozenImporter.load_module('__phello__')
-            check = {'__name__': '__phello__', 
-                     '__package__': '__phello__', 
+            check = {'__name__': '__phello__',
+                     '__package__': '__phello__',
                      '__path__': ['__phello__'],
                      '__loader__': machinery.FrozenImporter,
                      }
@@ -62,7 +62,7 @@
     def test_module_repr(self):
         with util.uncache('__hello__'), captured_stdout():
             module = machinery.FrozenImporter.load_module('__hello__')
-            self.assertEqual(repr(module), 
+            self.assertEqual(repr(module),
                              "<module '__hello__' (frozen)>")
 
     def test_state_after_failure(self):

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


More information about the Python-checkins mailing list