diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-10-07 07:03:04 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-10-07 07:03:04 (GMT) |
commit | 651423c1eb91a7e5a0ff346d2f52a654b765344a (patch) | |
tree | c075a3106993dbd399e009c179fdc0885328b49c /Doc/library/os.rst | |
parent | a731b9929f6aeb55d484cf7b655e9c108e16f222 (diff) | |
download | cpython-651423c1eb91a7e5a0ff346d2f52a654b765344a.zip cpython-651423c1eb91a7e5a0ff346d2f52a654b765344a.tar.gz cpython-651423c1eb91a7e5a0ff346d2f52a654b765344a.tar.bz2 |
More bytes vs. strings documentation.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 0fd4094..14ad8f9 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -694,6 +694,8 @@ Files and Directories .. function:: getcwd() Return a string representing the current working directory. + May raise UnicodeDecodeError if the current directory path fails + to decode in the file system encoding. Availability: Unix, Windows. |