bpo-30746: Prohibited the '=' character in environment variable names (#2382)

in `os.putenv()` and `os.spawn*()`.
This commit is contained in:
Serhiy Storchaka 2017-06-25 07:33:01 +03:00 committed by GitHub
parent 1ba9469e9f
commit 77703942c5
4 changed files with 95 additions and 4 deletions

View file

@ -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().