summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-06-25 04:33:01 (GMT)
committerGitHub <noreply@github.com>2017-06-25 04:33:01 (GMT)
commit77703942c5997dff00c48f10df1b29b11645624c (patch)
tree58481f08535f9be849539c70bcdce3192a9fcbfa /Misc
parent1ba9469e9fdff0c52ba19b1e13a9c4b7235fc9eb (diff)
downloadcpython-77703942c5997dff00c48f10df1b29b11645624c.zip
cpython-77703942c5997dff00c48f10df1b29b11645624c.tar.gz
cpython-77703942c5997dff00c48f10df1b29b11645624c.tar.bz2
bpo-30746: Prohibited the '=' character in environment variable names (#2382)
in `os.putenv()` and `os.spawn*()`.
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 f33589d..83eb530 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -374,6 +374,9 @@ Extension Modules
Library
-------
+- bpo-30746: Prohibited the '=' character in environment variable names in
+ ``os.putenv()`` and ``os.spawn*()``.
+
- bpo-30664: The description of a unittest subtest now preserves the order of
keyword arguments of TestCase.subTest().