]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorTim Peters <tim.peters@gmail.com>
Mon, 10 Jul 2006 21:11:49 +0000 (21:11 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 10 Jul 2006 21:11:49 +0000 (21:11 +0000)
Lib/test/test_inspect.py

index d100d22ab560b3368abf61f2491fd4069bbd13b7..912a24fc5a8055a06d7b4ddcceafd87c6f54b125 100644 (file)
@@ -182,7 +182,7 @@ class TestRetrievingSourceCode(GetSourceBase):
         from new import module
         name = '__inspect_dummy'
         m = sys.modules[name] = module(name)
-        m.__file__ = "<string>" # hopefully not a real filename... 
+        m.__file__ = "<string>" # 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), '<string>')