Fix ResourceWarnings in test_subprocess.

This commit is contained in:
Nadeem Vawda 2011-08-19 05:12:01 +02:00
parent 72d161af51
commit 0d7cda3e63
1 changed files with 4 additions and 0 deletions

View File

@ -1404,6 +1404,8 @@ class POSIXProcessTestCase(BaseTestCase):
'time.sleep(0.2)'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
self.addCleanup(p.stdout.close)
self.addCleanup(p.stderr.close)
ident = id(p)
pid = p.pid
del p
@ -1421,6 +1423,8 @@ class POSIXProcessTestCase(BaseTestCase):
'time.sleep(3)'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
self.addCleanup(p.stdout.close)
self.addCleanup(p.stderr.close)
ident = id(p)
pid = p.pid
del p