diff options
author | Raymond Hettinger <python@rcn.com> | 2011-03-25 19:41:34 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-03-25 19:41:34 (GMT) |
commit | 4967be074b3fbc7fcabc221586ff581acd88b1b3 (patch) | |
tree | 481b3dd6e84c8b25de828e8327a59923a173fd00 /Doc | |
parent | 961355a56a7a896c7ea4ad7416f0cf74a50852a9 (diff) | |
parent | df07aacebb5e414d2dbf1282df75761a6746c4e6 (diff) | |
download | cpython-4967be074b3fbc7fcabc221586ff581acd88b1b3.zip cpython-4967be074b3fbc7fcabc221586ff581acd88b1b3.tar.gz cpython-4967be074b3fbc7fcabc221586ff581acd88b1b3.tar.bz2 |
Issue #11071: Fix whatsnew description of O/S access to raw bytes.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.2.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/whatsnew/3.2.rst b/Doc/whatsnew/3.2.rst index 256b343..358e5be 100644 --- a/Doc/whatsnew/3.2.rst +++ b/Doc/whatsnew/3.2.rst @@ -1499,11 +1499,11 @@ filenames: >>> os.fsencode(filename) b'Sehensw\xc3\xbcrdigkeiten' -Some operating systems allow direct access to the unencoded bytes in the +Some operating systems allow direct access to encoded bytes in the environment. If so, the :attr:`os.supports_bytes_environ` constant will be true. -For direct access to unencoded environment variables (if available), +For direct access to encoded environment variables (if available), use the new :func:`os.getenvb` function or use :data:`os.environb` which is a bytes version of :data:`os.environ`. |