]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-39413: Implement os.unsetenv() on Windows (GH-18104)
authorVictor Stinner <vstinner@python.org>
Tue, 21 Jan 2020 15:13:09 +0000 (16:13 +0100)
committerGitHub <noreply@github.com>
Tue, 21 Jan 2020 15:13:09 +0000 (16:13 +0100)
commit56cd3710a1ea3ba872d345ea1bebc86ed08bc8b8
tree53e622226ec54c95227e9c36011b7326fb918899
parent59e2d26b258c12f18d8d2e789ef741703d6c52d5
bpo-39413: Implement os.unsetenv() on Windows (GH-18104)

The os.unsetenv() function is now also available on Windows.

It is implemented with SetEnvironmentVariableW(name, NULL).
Doc/library/os.rst
Doc/whatsnew/3.9.rst
Lib/test/test_os.py
Misc/NEWS.d/next/Library/2020-01-21-15-48-35.bpo-39413.7XYDM8.rst [new file with mode: 0644]
Modules/clinic/posixmodule.c.h
Modules/posixmodule.c