From: Tim Peters Date: Mon, 10 Jul 2006 21:11:49 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.5b2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=722b88308da16225530a8852adc0581a918d5105;p=python Whitespace normalization. --- diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index d100d22ab5..912a24fc5a 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -182,7 +182,7 @@ class TestRetrievingSourceCode(GetSourceBase): from new import module name = '__inspect_dummy' m = sys.modules[name] = module(name) - m.__file__ = "" # hopefully not a real filename... + m.__file__ = "" # hopefully not a real filename... m.__loader__ = "dummy" # pretend the filename is understood by a loader exec "def x(): pass" in m.__dict__ self.assertEqual(inspect.getsourcefile(m.x.func_code), '')