diff options
author | Victor Stinner <vstinner@python.org> | 2020-01-24 10:53:44 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-24 10:53:44 (GMT) |
commit | 161e7b36b1ea871a1352ccfc1d4f4c1eda76830f (patch) | |
tree | 0f44995e5fadbd3cedb76688e71a06693dcd7270 /Doc | |
parent | 2d5097663d7f80921fb07cdcd26c9d59cf71f1a2 (diff) | |
download | cpython-161e7b36b1ea871a1352ccfc1d4f4c1eda76830f.zip cpython-161e7b36b1ea871a1352ccfc1d4f4c1eda76830f.tar.gz cpython-161e7b36b1ea871a1352ccfc1d4f4c1eda76830f.tar.bz2 |
bpo-39413: Implement os.unsetenv() on Windows (GH-18163)
The os.unsetenv() function is now also available on Windows.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 3 | ||||
-rw-r--r-- | Doc/whatsnew/3.9.rst | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 4fec647..de3e560 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -645,6 +645,9 @@ process and user. .. availability:: most flavors of Unix, Windows. + .. versionchanged:: 3.9 + The function is now also available on Windows. + .. _os-newstreams: diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index 9b5b4fb..751562e 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -224,6 +224,9 @@ Exposed the Linux-specific :func:`os.pidfd_open` (:issue:`38692`) and :data:`os.P_PIDFD` (:issue:`38713`) for process management with file descriptors. +The :func:`os.unsetenv` function is now also available on Windows. +(Contributed by Victor Stinner in :issue:`39413`.) + poplib ------ |