[Python-checkins] cpython: whitespace cleanup

brett.cannon python-checkins at python.org
Fri Jan 22 18:27:03 EST 2016


https://hg.python.org/cpython/rev/3e76ac5cb583
changeset:   100052:3e76ac5cb583
user:        Brett Cannon <brett at python.org>
date:        Fri Jan 22 15:26:56 2016 -0800
summary:
  whitespace cleanup

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


diff --git a/Lib/test/test_importlib/import_/test___package__.py b/Lib/test/test_importlib/import_/test___package__.py
--- a/Lib/test/test_importlib/import_/test___package__.py
+++ b/Lib/test/test_importlib/import_/test___package__.py
@@ -76,8 +76,8 @@
     def test_warn_when_package_and_spec_disagree(self):
         # Raise an ImportWarning if __package__ != __spec__.parent.
         with self.assertWarns(ImportWarning):
-                self.import_module({'__package__': 'pkg.fake',
-                                    '__spec__': FakeSpec('pkg.fakefake')})
+            self.import_module({'__package__': 'pkg.fake',
+                                '__spec__': FakeSpec('pkg.fakefake')})
 
     def test_bad__package__(self):
         globals = {'__package__': '<not real>'}

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


More information about the Python-checkins mailing list