diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-09-14 19:56:31 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-09-14 19:56:31 (GMT) |
commit | f135f62cfd1529cbb9326e53728a22afd05b6bc3 (patch) | |
tree | 069cd5e8e3cba9b6f207d837cba76621128ff29e /Misc | |
parent | 20fa05d0223101b8e0005525b94a2eac892348de (diff) | |
download | cpython-f135f62cfd1529cbb9326e53728a22afd05b6bc3.zip cpython-f135f62cfd1529cbb9326e53728a22afd05b6bc3.tar.gz cpython-f135f62cfd1529cbb9326e53728a22afd05b6bc3.tar.bz2 |
[3.6] bpo-31471: Fix assertion failure in subprocess.Popen() on Windows, in case env has a bad keys() method. (GH-3580) (#3584)
(cherry picked from commit 0b3a87ef54a0112b74e8a1d8c6f87d10db4239ab)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2017-09-14-19-47-57.bpo-31471.0yiA5Q.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-09-14-19-47-57.bpo-31471.0yiA5Q.rst b/Misc/NEWS.d/next/Core and Builtins/2017-09-14-19-47-57.bpo-31471.0yiA5Q.rst new file mode 100644 index 0000000..73c4444 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2017-09-14-19-47-57.bpo-31471.0yiA5Q.rst @@ -0,0 +1,2 @@ +Fix an assertion failure in `subprocess.Popen()` on Windows, in case the env +argument has a bad keys() method. Patch by Oren Milman. |