commit | 56cd3710a1ea3ba872d345ea1bebc86ed08bc8b8 | [log] [tgz] |
---|---|---|
author | Victor Stinner <vstinner@python.org> | Tue Jan 21 16:13:09 2020 +0100 |
committer | GitHub <noreply@github.com> | Tue Jan 21 16:13:09 2020 +0100 |
tree | 53e622226ec54c95227e9c36011b7326fb918899 | |
parent | 59e2d26b258c12f18d8d2e789ef741703d6c52d5 [diff] |
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).