]> granicus.if.org Git - python/commitdiff
"boolean" --> "Boolean" (per the style guide).
authorFred Drake <fdrake@acm.org>
Mon, 1 Oct 2001 17:04:10 +0000 (17:04 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 1 Oct 2001 17:04:10 +0000 (17:04 +0000)
Doc/lib/libcfgparser.tex
Doc/lib/libdis.tex
Doc/lib/libformatter.tex
Doc/lib/libparser.tex

index 6afbe35cf01e4955ab96bab1718d7b4bbc6295ef..f2137326f15831c6be5a737131b1c17cfc061a53 100644 (file)
@@ -163,7 +163,7 @@ A convenience method which coerces the \var{option} in the specified
 
 \begin{methoddesc}{getboolean}{section, option}
 A convenience method which coerces the \var{option} in the specified
-\var{section} to a boolean value.  Note that the only accepted values
+\var{section} to a Boolean value.  Note that the only accepted values
 for the option are \samp{0} and \samp{1}, any others will raise
 \exception{ValueError}.
 \end{methoddesc}
index b41b71907870e435016ea58e9d6285d10dc068c6..2a285d2094c061b74c2f3237bc300dbbec02e575 100644 (file)
@@ -102,7 +102,7 @@ Sequence of byte codes that access a local variable.
 \end{datadesc}
 
 \begin{datadesc}{hascompare}
-Sequence of byte codes of boolean operations.
+Sequence of byte codes of Boolean operations.
 \end{datadesc}
 
 \subsection{Python Byte Code Instructions}
@@ -474,7 +474,7 @@ Replaces TOS with \code{getattr(TOS, co_names[\var{namei}]}.
 \end{opcodedesc}
 
 \begin{opcodedesc}{COMPARE_OP}{opname}
-Performs a boolean operation.  The operation name can be found
+Performs a Boolean operation.  The operation name can be found
 in \code{cmp_op[\var{opname}]}.
 \end{opcodedesc}
 
index 197dc3cde7dd370a31b44979d586ebf2707ca2a2..d7c5a6b83bf3750cabaa3a09b044f7e797fa57c3 100644 (file)
@@ -234,7 +234,7 @@ of the form \code{(}\var{size}, \var{italic}, \var{bold},
 \var{teletype}\code{)}.  Size will be a string indicating the size of
 font that should be used; specific strings and their interpretation
 must be defined by the application.  The \var{italic}, \var{bold}, and
-\var{teletype} values are boolean indicators specifying which of those
+\var{teletype} values are Boolean values specifying which of those
 font attributes should be used.
 \end{methoddesc}
 
index 9ff3f42914b65214c32b0518c47f568d1ffcc00a..15b46ae57ddf29d6c0d4647a2271f482fc9979a2 100644 (file)
@@ -473,7 +473,7 @@ docstrings.  Since the example demonstrates information extraction, we
 can safely require that the tree be in tuple form rather than list
 form, allowing a simple variable representation to be
 \code{['variable_name']}.  A simple recursive function can implement
-the pattern matching, returning a boolean and a dictionary of variable
+the pattern matching, returning a Boolean and a dictionary of variable
 name to value mappings.  (See file \file{example.py}.)
 
 \begin{verbatim}