From: Victor Stinner Date: Wed, 22 Jan 2020 12:50:40 +0000 (+0100) Subject: bpo-39413: os.unsetenv() is not available on Windows (GH-18108) X-Git-Tag: v3.8.2rc1~54 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f84f65be5602e561fef04b66bb487fbc4e560db5;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. --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 9d2e8b2eea23..7aadbcf773b6 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -643,7 +643,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: