bpo-39413: os.unsetenv() is not available on Windows (GH-18108)

Update os.unsetenv() documentation: it is not available on Windows.
This commit is contained in:
Victor Stinner 2020-01-22 13:50:40 +01:00 committed by GitHub
parent a755410e05
commit f84f65be56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: