From: Benjamin Peterson Date: Sat, 30 Oct 2010 22:59:37 +0000 (+0000) Subject: close files properly X-Git-Tag: v3.2a4~249 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=807a5a165254f7d82cceb4c3bed72b84661ef89f;p=python close files properly --- diff --git a/Lib/test/test_cgi.py b/Lib/test/test_cgi.py index fc84214593..4347668c78 100644 --- a/Lib/test/test_cgi.py +++ b/Lib/test/test_cgi.py @@ -182,10 +182,12 @@ class CgiTests(unittest.TestCase): return a f = TestReadlineFile(tempfile.TemporaryFile("w+")) + self.addCleanup(f.close) f.write('x' * 256 * 1024) f.seek(0) env = {'REQUEST_METHOD':'PUT'} fs = cgi.FieldStorage(fp=f, environ=env) + self.addCleanup(fs.file.close) # if we're not chunking properly, readline is only called twice # (by read_binary); if we are chunking properly, it will be called 5 times # as long as the chunksize is 1 << 16.