diff options
author | Christian Heimes <christian@python.org> | 2018-09-24 17:21:12 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-09-24 17:21:12 (GMT) |
commit | 223e501fb9c2b6ae21b96054e20c4c31d94a5d96 (patch) | |
tree | b3fd130b823aba8f38732cae4457910cbe2ba5d2 /Misc | |
parent | a46467ff198c42c8f34768c7be4b4562f6f44736 (diff) | |
download | cpython-223e501fb9c2b6ae21b96054e20c4c31d94a5d96.zip cpython-223e501fb9c2b6ae21b96054e20c4c31d94a5d96.tar.gz cpython-223e501fb9c2b6ae21b96054e20c4c31d94a5d96.tar.bz2 |
bpo-34791: xml package obeys ignore env flags (GH-9544)
The xml.sax and xml.dom.domreg modules now obey
sys.flags.ignore_environment.
Signed-off-by: Christian Heimes <christian@python.org>
https://bugs.python.org/issue34791
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Security/2018-09-24-18-49-25.bpo-34791.78GmIG.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2018-09-24-18-49-25.bpo-34791.78GmIG.rst b/Misc/NEWS.d/next/Security/2018-09-24-18-49-25.bpo-34791.78GmIG.rst new file mode 100644 index 0000000..afb59f8 --- /dev/null +++ b/Misc/NEWS.d/next/Security/2018-09-24-18-49-25.bpo-34791.78GmIG.rst @@ -0,0 +1,3 @@ +The xml.sax and xml.dom.domreg no longer use environment variables to +override parser implementations when sys.flags.ignore_environment is set by +-E or -I arguments. |