diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2023-11-10 16:42:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 16:42:14 (GMT) |
commit | 0b06d2482d77e02c5d40e221f6046c9c355458b2 (patch) | |
tree | 5401420104942e6729d7e9ea93bc89c9fd646ed9 /Misc | |
parent | 2e7f0700800c0337a0b1b9471fcef410e3158250 (diff) | |
download | cpython-0b06d2482d77e02c5d40e221f6046c9c355458b2.zip cpython-0b06d2482d77e02c5d40e221f6046c9c355458b2.tar.gz cpython-0b06d2482d77e02c5d40e221f6046c9c355458b2.tar.bz2 |
gh-111841: Fix os.putenv() and os.unsetenv() with embedded NUL on Windows (GH-111842)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2023-11-08-11-50-49.gh-issue-111841.iSqdQf.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2023-11-08-11-50-49.gh-issue-111841.iSqdQf.rst b/Misc/NEWS.d/next/Library/2023-11-08-11-50-49.gh-issue-111841.iSqdQf.rst new file mode 100644 index 0000000..cd17809 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2023-11-08-11-50-49.gh-issue-111841.iSqdQf.rst @@ -0,0 +1,2 @@ +Fix truncating arguments on an embedded null character in :meth:`os.putenv` +and :meth:`os.unsetenv` on Windows. |