From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 22 Jan 2020 12:56:22 +0000 (-0800) Subject: bpo-39413: os.unsetenv() is not available on Windows (GH-18108) X-Git-Tag: v3.7.7rc1~78 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=570724667d37fcb160cdef2b34190dc36e28155c;p=thirdparty%2FPython%2Fcpython.git bpo-39413: os.unsetenv() is not available on Windows (GH-18108) Update os.unsetenv() documentation: it is not available on Windows. (cherry picked from commit f84f65be5602e561fef04b66bb487fbc4e560db5) Co-authored-by: Victor Stinner --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 10d7deaecdca..3a5a5f97b93a 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -642,7 +642,7 @@ process and user. calls to :func:`unsetenv` don't update ``os.environ``, so it is actually preferable to delete items of ``os.environ``. - .. availability:: most flavors of Unix, Windows. + .. availability:: most flavors of Unix. .. _os-newstreams: