svn+ssh://pythondev@svn.python.org/python/trunk
........
r76716 | antoine.pitrou | 2009-12-08 20:25:51 +0100 (mar., 08 déc. 2009) | 4 lines
Fix the transient refleaks in test_zipimport_support.
Diagnosis and original patch by Florent Xicluna (flox).
........
data = p.stdout.read()
p.stdout.close()
# try to cleanup the child so we don't appear to leak when running
- # with regrtest -R. This should be a no-op on Windows.
+ # with regrtest -R.
+ p.wait()
subprocess._cleanup()
return data
Thomas Wouters
Heiko Wundram
Doug Wyatt
+Florent Xicluna
Ka-Ping Yee
Bob Yodlowski
Danny Yoo