]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
SF patch #859286: documentation bool change fix
authorRaymond Hettinger <python@rcn.com>
Wed, 31 Dec 2003 18:37:28 +0000 (18:37 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 31 Dec 2003 18:37:28 +0000 (18:37 +0000)
(Contributed by George Yoshida.)

Doc/lib/emailmessage.tex
Doc/lib/libcfgparser.tex
Doc/lib/libos.tex
Doc/lib/libsmtplib.tex

index dbd1afd649d35a68c06e949cebcfd66e7bc867bd..7618b20b79e600e2cab51ed5ce00639f3696e927 100644 (file)
@@ -561,7 +561,7 @@ to calling this method, the object's payload was \code{None}
 will be the argument \var{payload}.
 
 If the object's payload was already a list
-(i.e. \method{is_multipart()} returns 1), then \var{payload} is
+(i.e. \method{is_multipart()} returns \code{True}), then \var{payload} is
 appended to the end of the existing payload list.
 
 For any other type of existing payload, \method{add_payload()} will
index 6eba042ab3d520228ab5964caeebbcd6d7bd20b4..deec8ec39ee2dd74faf40ddbf842d64e1bd9066d 100644 (file)
@@ -165,8 +165,8 @@ Returns a list of options available in the specified \var{section}.
 \end{methoddesc}
 
 \begin{methoddesc}{has_option}{section, option}
-If the given section exists, and contains the given option. return 1;
-otherwise return 0.
+If the given section exists, and contains the given option,
+return \constant{True}; otherwise return \constant{False}.
 \versionadded{1.6}
 \end{methoddesc}
 
@@ -245,7 +245,8 @@ call.
 \begin{methoddesc}{remove_option}{section, option}
 Remove the specified \var{option} from the specified \var{section}.
 If the section does not exist, raise \exception{NoSectionError}. 
-If the option existed to be removed, return 1; otherwise return 0.
+If the option existed to be removed, return \constant{True};
+otherwise return \constant{False}.
 \versionadded{1.6}
 \end{methoddesc}
 
index a8ceac817231c6d2fbe57bcdddc142a3d810c3d3..c96a990f9bea0cdfab4690410747da953940030a 100644 (file)
@@ -272,7 +272,7 @@ Set the current process' user id.
 Availability: \UNIX.
 \end{funcdesc}
 
-% placed in this section since it relates to errno.... a little weak ;-(
+% placed in this section since it relates to errno.... a little weak
 \begin{funcdesc}{strerror}{code}
 Return the error message corresponding to the error code in
 \var{code}.
@@ -616,7 +616,8 @@ be used in a suid/sgid environment to test if the invoking user has the
 specified access to \var{path}.  \var{mode} should be \constant{F_OK}
 to test the existence of \var{path}, or it can be the inclusive OR of
 one or more of \constant{R_OK}, \constant{W_OK}, and \constant{X_OK} to
-test permissions.  Return \code{1} if access is allowed, \code{0} if not.
+test permissions.  Return \constant{True} if access is allowed,
+\constant{False} if not.
 See the \UNIX{} man page \manpage{access}{2} for more information.
 Availability: \UNIX, Windows.
 \end{funcdesc}
index 92661db965f0587c5b6275aa9667833e6ed26bd5..491f75bdcc32b70dcb14716e215555a6970065eb 100644 (file)
@@ -146,8 +146,9 @@ will be implicitly called by \method{sendmail()} when necessary.
 \end{methoddesc}
 
 \begin{methoddesc}{has_extn}{name}
-Return \code{1} if \var{name} is in the set of SMTP service extensions
-returned by the server, \code{0} otherwise.  Case is ignored.
+Return \constant{True} if \var{name} is in the set of SMTP service
+extensions returned by the server, \constant{False} otherwise.
+Case is ignored.
 \end{methoddesc}
 
 \begin{methoddesc}{verify}{address}