diff options
author | Fred Drake <fdrake@acm.org> | 2001-10-01 17:04:10 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2001-10-01 17:04:10 (GMT) |
commit | 6c81e2a44fd6ab5cacbb2e1d5c48933d65a58948 (patch) | |
tree | b632dc434ef138c372e714a363294165c97a9bb6 | |
parent | 0f0380a25fc2a95f0367540f45af585751914d23 (diff) | |
download | cpython-6c81e2a44fd6ab5cacbb2e1d5c48933d65a58948.zip cpython-6c81e2a44fd6ab5cacbb2e1d5c48933d65a58948.tar.gz cpython-6c81e2a44fd6ab5cacbb2e1d5c48933d65a58948.tar.bz2 |
"boolean" --> "Boolean" (per the style guide).
-rw-r--r-- | Doc/lib/libcfgparser.tex | 2 | ||||
-rw-r--r-- | Doc/lib/libdis.tex | 4 | ||||
-rw-r--r-- | Doc/lib/libformatter.tex | 2 | ||||
-rw-r--r-- | Doc/lib/libparser.tex | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Doc/lib/libcfgparser.tex b/Doc/lib/libcfgparser.tex index 6afbe35..f213732 100644 --- a/Doc/lib/libcfgparser.tex +++ b/Doc/lib/libcfgparser.tex @@ -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} diff --git a/Doc/lib/libdis.tex b/Doc/lib/libdis.tex index b41b719..2a285d2 100644 --- a/Doc/lib/libdis.tex +++ b/Doc/lib/libdis.tex @@ -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} diff --git a/Doc/lib/libformatter.tex b/Doc/lib/libformatter.tex index 197dc3c..d7c5a6b 100644 --- a/Doc/lib/libformatter.tex +++ b/Doc/lib/libformatter.tex @@ -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} diff --git a/Doc/lib/libparser.tex b/Doc/lib/libparser.tex index 9ff3f42..15b46ae 100644 --- a/Doc/lib/libparser.tex +++ b/Doc/lib/libparser.tex @@ -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} |