summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.9.rst
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-01-24 10:53:44 (GMT)
committerGitHub <noreply@github.com>2020-01-24 10:53:44 (GMT)
commit161e7b36b1ea871a1352ccfc1d4f4c1eda76830f (patch)
tree0f44995e5fadbd3cedb76688e71a06693dcd7270 /Doc/whatsnew/3.9.rst
parent2d5097663d7f80921fb07cdcd26c9d59cf71f1a2 (diff)
downloadcpython-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/whatsnew/3.9.rst')
-rw-r--r--Doc/whatsnew/3.9.rst3
1 files changed, 3 insertions, 0 deletions
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
------