summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-06-21 15:18:38 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-06-21 15:18:38 (GMT)
commitf1512a2967ac30c38135fb950d623d5fed856494 (patch)
tree03aaf88b18adecd7e97b29d89cd7f659d1264848 /Misc
parentb7149cad045b0273e2cb104a1f15ff942eab1cf6 (diff)
downloadcpython-f1512a2967ac30c38135fb950d623d5fed856494.zip
cpython-f1512a2967ac30c38135fb950d623d5fed856494.tar.gz
cpython-f1512a2967ac30c38135fb950d623d5fed856494.tar.bz2
Close #12383: Fix subprocess module with env={}: don't copy the environment
variables, start with an empty environment.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0ec55b6..60405dd 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -25,6 +25,9 @@ Core and Builtins
Library
-------
+- Issue #12383: Fix subprocess module with env={}: don't copy the environment
+ variables, start with an empty environment.
+
- Issue #11584: email.header.decode_header no longer fails if the header
passed to it is a Header object, and Header/make_header no longer fail
if given binary unknown-8bit input.