summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_zipimport.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2006-04-11 01:44:26 (GMT)
committerTim Peters <tim.peters@gmail.com>2006-04-11 01:44:26 (GMT)
commit413c9226d27a09526b0edbe58317426ea1df83a3 (patch)
treef056dfbf91088a815789fa8d66721d8672446805 /Lib/test/test_zipimport.py
parent3a5e8b1e365b1b47c61ef2b3d2f45f56fd4f2711 (diff)
downloadcpython-413c9226d27a09526b0edbe58317426ea1df83a3.zip
cpython-413c9226d27a09526b0edbe58317426ea1df83a3.tar.gz
cpython-413c9226d27a09526b0edbe58317426ea1df83a3.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_zipimport.py')
-rw-r--r--Lib/test/test_zipimport.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_zipimport.py b/Lib/test/test_zipimport.py
index 0d46f0b..4e1a845 100644
--- a/Lib/test/test_zipimport.py
+++ b/Lib/test/test_zipimport.py
@@ -269,7 +269,7 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase):
def testGetCompiledSource(self):
pyc = make_pyc(compile(test_src, "<???>", "exec"), NOW)
- files = {TESTMOD + ".py": (NOW, test_src),
+ files = {TESTMOD + ".py": (NOW, test_src),
TESTMOD + pyc_ext: (NOW, pyc)}
self.doTest(pyc_ext, files, TESTMOD, call=self.assertModuleSource)
@@ -310,7 +310,7 @@ class UncompressedZipImportTestCase(ImportHooksBaseTestCase):
module.do_raise()
except:
tb = sys.exc_info()[2].tb_next
-
+
f,lno,n,line = extract_tb(tb, 1)[0]
self.assertEqual(line, raise_src.strip())