From: Neal Norwitz Date: Mon, 3 Oct 2005 05:47:38 +0000 (+0000) Subject: SF Bug #1008310, os.major() os.minor() example and description change. Will backport. X-Git-Tag: v2.5a0~1315 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ecbc19e09a73ab426cbc2f48b11df753961b2e3;p=python SF Bug #1008310, os.major() os.minor() example and description change. Will backport. --- diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex index 3662a46f77..631f241c6f 100644 --- a/Doc/lib/libos.tex +++ b/Doc/lib/libos.tex @@ -843,12 +843,14 @@ defines the newly created device special file (probably using \end{funcdesc} \begin{funcdesc}{major}{device} -Extracts a device major number from a raw device number. +Extracts the device major number from a raw device number (usually +the \member{st_dev} or \member{st_rdev} field from \ctype{stat}). \versionadded{2.3} \end{funcdesc} \begin{funcdesc}{minor}{device} -Extracts a device minor number from a raw device number. +Extracts the device minor number from a raw device number (usually +the \member{st_dev} or \member{st_rdev} field from \ctype{stat}). \versionadded{2.3} \end{funcdesc}