Commit 763f1e8d authored by Ezio Melotti's avatar Ezio Melotti

indentation and further alignment with py3k

parent 6d6b53ca
......@@ -562,10 +562,10 @@ class PyZipFileTests(unittest.TestCase):
os.mkdir(TESTFN2)
try:
with open(os.path.join(TESTFN2, "mod1.py"), "w") as fp:
fp.write("print 42\n")
fp.write("print(42)\n")
with open(os.path.join(TESTFN2, "mod2.py"), "w") as fp:
fp.write("print 42 * 42\n")
fp.write("print(42 * 42)\n")
with open(os.path.join(TESTFN2, "mod2.txt"), "w") as fp:
fp.write("bla bla bla\n")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment