mirror of
https://github.com/python/cpython.git
synced 2025-09-27 18:59:43 +00:00
Merged revisions 76716 via svnmerge from
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). ........
This commit is contained in:
parent
309608b434
commit
4e7dc5fae9
2 changed files with 3 additions and 1 deletions
|
@ -30,7 +30,8 @@ def kill_python(p):
|
||||||
data = p.stdout.read()
|
data = p.stdout.read()
|
||||||
p.stdout.close()
|
p.stdout.close()
|
||||||
# try to cleanup the child so we don't appear to leak when running
|
# 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()
|
subprocess._cleanup()
|
||||||
return data
|
return data
|
||||||
|
|
||||||
|
|
|
@ -832,6 +832,7 @@ Gordon Worley
|
||||||
Thomas Wouters
|
Thomas Wouters
|
||||||
Heiko Wundram
|
Heiko Wundram
|
||||||
Doug Wyatt
|
Doug Wyatt
|
||||||
|
Florent Xicluna
|
||||||
Ka-Ping Yee
|
Ka-Ping Yee
|
||||||
Bob Yodlowski
|
Bob Yodlowski
|
||||||
Danny Yoo
|
Danny Yoo
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue