summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorÉric Araujo <merwok@netwok.org>2011-08-19 01:07:39 (GMT)
committerÉric Araujo <merwok@netwok.org>2011-08-19 01:07:39 (GMT)
commite7329f47e777d75a6602418f3198589828c35fce (patch)
treeff8e347615836328b741af06e8d5d3b2e783305f /Misc
parent99c4c340e6bb61966643c54b4ff3db832237203a (diff)
downloadcpython-e7329f47e777d75a6602418f3198589828c35fce.zip
cpython-e7329f47e777d75a6602418f3198589828c35fce.tar.gz
cpython-e7329f47e777d75a6602418f3198589828c35fce.tar.bz2
Guard shutil._make_archive against a logger=None argument.
Backporting two lines from the 3.x tests was enough to trigger the bug. I also took the opportunity of making the logging call lazy.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 679b4b0..78f4fa6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,8 @@ Core and Builtins
Library
-------
+- Issue #9173: Let shutil._make_archive work if the logger argument is None.
+
- Issue #12650: Fix a race condition where a subprocess.Popen could leak
resources (FD/zombie) when killed at the wrong time.