summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-07-10 21:11:49 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-07-10 21:11:49 (GMT)
commit722b88308da16225530a8852adc0581a918d5105 (patch)
treea8fbfe6d02cbe6c0a657d8d48ccb808d72d41f0d
parent32a8361f2da758c1de662b6d5a1b780466e18cf9 (diff)
downloadcpython-722b88308da16225530a8852adc0581a918d5105.zip
cpython-722b88308da16225530a8852adc0581a918d5105.tar.gz
cpython-722b88308da16225530a8852adc0581a918d5105.tar.bz2
Whitespace normalization.
-rw-r--r--Lib/test/test_inspect.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py
index d100d22..912a24f 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__ = "<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>')