diff options
author | Georg Brandl <georg@python.org> | 2010-05-21 22:03:29 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-05-21 22:03:29 (GMT) |
commit | fa0fdb89e98fbbec7da9891dde2647fb951888c8 (patch) | |
tree | 7f62c559011b9db4f4b7c4f6f54c13f3497ab23d /Doc/library/os.rst | |
parent | 93f6615a02aae9cee0d0bff6ae1ad4e26abe151d (diff) | |
download | cpython-fa0fdb89e98fbbec7da9891dde2647fb951888c8.zip cpython-fa0fdb89e98fbbec7da9891dde2647fb951888c8.tar.gz cpython-fa0fdb89e98fbbec7da9891dde2647fb951888c8.tar.bz2 |
#8709: mention Windows support for os.devnull.
Diffstat (limited to 'Doc/library/os.rst')
-rw-r--r-- | Doc/library/os.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 7eff160..64e04be 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -2410,8 +2410,8 @@ Higher-level operations on pathnames are defined in the :mod:`os.path` module. .. data:: devnull - The file path of the null device. For example: ``'/dev/null'`` for POSIX. - Also available via :mod:`os.path`. + The file path of the null device. For example: ``'/dev/null'`` for + POSIX, ``'nul'`` for Windows. Also available via :mod:`os.path`. .. versionadded:: 2.4 |