diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-26 19:44:07 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-26 19:44:07 (GMT) |
commit | 996e5f94d2014279e7fea0a66ce31f800fb7f625 (patch) | |
tree | 74c16c82830612af794879395f66a3cebdae15fd /Doc | |
parent | 1d480bea9c951af9c317b699c4a420990f401918 (diff) | |
download | cpython-996e5f94d2014279e7fea0a66ce31f800fb7f625.zip cpython-996e5f94d2014279e7fea0a66ce31f800fb7f625.tar.gz cpython-996e5f94d2014279e7fea0a66ce31f800fb7f625.tar.bz2 |
os.genenvb() is not availabnle under Windows
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 56e4adc..efe4c9d 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -206,6 +206,9 @@ process and user. Return the value of the environment variable *key* if it exists, or *default* if it doesn't. *key*, *default* and the result are bytes. + :func:`getenvb` is only available if :data:`supports_bytes_environ` + is True. + Availability: most flavors of Unix. .. versionadded:: 3.2 |