Commit 356808fe authored by Stefan Behnel's avatar Stefan Behnel

test runner: close files immediately after use

parent abaa1710
...@@ -316,18 +316,22 @@ class CythonCompileTestCase(unittest.TestCase): ...@@ -316,18 +316,22 @@ class CythonCompileTestCase(unittest.TestCase):
source_file = os.path.join(test_directory, module) + '.pyx' source_file = os.path.join(test_directory, module) + '.pyx'
source_and_output = codecs.open( source_and_output = codecs.open(
self.find_module_source_file(source_file), 'rU', 'ISO-8859-1') self.find_module_source_file(source_file), 'rU', 'ISO-8859-1')
out = codecs.open(os.path.join(workdir, module + '.pyx'), try:
'w', 'ISO-8859-1') out = codecs.open(os.path.join(workdir, module + '.pyx'),
for line in source_and_output: 'w', 'ISO-8859-1')
last_line = line for line in source_and_output:
if line.startswith("_ERRORS"): last_line = line
out.close() if line.startswith("_ERRORS"):
out = ErrorWriter() out.close()
else: out = ErrorWriter()
out.write(line) else:
out.write(line)
finally:
source_and_output.close()
try: try:
geterrors = out.geterrors geterrors = out.geterrors
except AttributeError: except AttributeError:
out.close()
return [] return []
else: else:
return geterrors() return geterrors()
......
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