cpython/Misc/NEWS.d/next/Library/2024-06-04-18-53-10.gh-issu...

5 lines
240 B
ReStructuredText
Raw Normal View History

Added the :data:`os.environ.refresh() <os.environ>` method to update
:data:`os.environ` with changes to the environment made by :func:`os.putenv`,
by :func:`os.unsetenv`, or made outside Python in the same process.
Patch by Victor Stinner.