summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2004-06-08 08:29:33 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2004-06-08 08:29:33 (GMT)
commitbdec50f0277971830e307aff8090c1494a69f4ce (patch)
tree19ae2f89e1b093efd1062a997d9139c781b9d9a9 /Doc
parentf30d60edbc0d5047a2fdd01e25868e4b814107e2 (diff)
downloadcpython-bdec50f0277971830e307aff8090c1494a69f4ce.zip
cpython-bdec50f0277971830e307aff8090c1494a69f4ce.tar.gz
cpython-bdec50f0277971830e307aff8090c1494a69f4ce.tar.bz2
Feature request #935915: Add os.path.devnull.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libos.tex8
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index 7fc7fabe..73630e8 100644
--- a/Doc/lib/libos.tex
+++ b/Doc/lib/libos.tex
@@ -1808,3 +1808,11 @@ current platform. This may be a single character, such as \code{'\e
n'} for \POSIX{} or \code{'\e r'} for Mac OS, or multiple characters,
for example, \code{'\e r\e n'} for Windows.
\end{datadesc}
+
+\begin{datadesc}{devnull}
+The file path of the null device.
+For example: \code{'/dev/null'} for \POSIX{} or \code{'Dev:Nul'} for the
+Macintosh.
+Also available via \module{os.path}.
+\versionadded{2.4}
+\end{datadesc}