diff options
author | Charles Burkland <charles.abucher@gmail.com> | 2020-03-13 16:04:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-13 16:04:43 (GMT) |
commit | d648ef10c5c7659ed3c9f34d5c751dc55e2c6007 (patch) | |
tree | e8cbea457b659acde56f062bdc6b09856bd66d61 /Doc/library/os.rst | |
parent | 38965ec5411da60d312b59be281f3510d58e0cf1 (diff) | |
download | cpython-d648ef10c5c7659ed3c9f34d5c751dc55e2c6007.zip cpython-d648ef10c5c7659ed3c9f34d5c751dc55e2c6007.tar.gz cpython-d648ef10c5c7659ed3c9f34d5c751dc55e2c6007.tar.bz2 |
bpo-36144: Update os.environ and os.environb for PEP 584 (#18911)
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index c9d6fb2..d8bca2f 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -135,6 +135,9 @@ process and user. ``os.environ``, and when one of the :meth:`pop` or :meth:`clear` methods is called. + .. versionchanged:: 3.9 + Updated to support :pep:`584`'s merge (``|``) and update (``|=``) operators. + .. data:: environb @@ -148,6 +151,9 @@ process and user. .. versionadded:: 3.2 + .. versionchanged:: 3.9 + Updated to support :pep:`584`'s merge (``|``) and update (``|=``) operators. + .. function:: chdir(path) fchdir(fd) |