mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
bpo-39395: putenv() and unsetenv() always available (GH-18135)
The os.putenv() and os.unsetenv() functions are now always available. On non-Windows platforms, Python now requires setenv() and unsetenv() functions to build. Remove putenv_dict from posixmodule.c: it's not longer needed.
This commit is contained in:
parent
161e7b36b1
commit
b8d1262e8a
12 changed files with 52 additions and 154 deletions
|
@ -0,0 +1,2 @@
|
|||
On non-Windows platforms, the :c:func:`setenv` and :c:func:`unsetenv` functions
|
||||
are now required to build Python.
|
|
@ -0,0 +1,2 @@
|
|||
The :func:`os.putenv` and :func:`os.unsetenv` functions are now always
|
||||
available.
|
Loading…
Add table
Add a link
Reference in a new issue