Fix minor typos.

This commit is contained in:
Raymond Hettinger 2003-05-12 03:23:51 +00:00
parent 73414a2705
commit bf3a75283c
4 changed files with 5 additions and 5 deletions

View file

@ -426,8 +426,8 @@ threads that happen to run before the settings have been restored.
If, when coding a module for general use, you need a locale If, when coding a module for general use, you need a locale
independent version of an operation that is affected by the locale independent version of an operation that is affected by the locale
(e.g. \function{string.lower()}, or certain formats used with (such as \function{string.lower()}, or certain formats used with
\function{time.strftime()})), you will have to find a way to do it \function{time.strftime()}), you will have to find a way to do it
without using the standard library routine. Even better is convincing without using the standard library routine. Even better is convincing
yourself that using locale settings is okay. Only as a last resort yourself that using locale settings is okay. Only as a last resort
should you document that your module is not compatible with should you document that your module is not compatible with

View file

@ -88,7 +88,7 @@ This is a list of strings. For parameters of the form
\begin{methoddesc}{getparam}{name} \begin{methoddesc}{getparam}{name}
Return the \var{value} of the first parameter (as returned by Return the \var{value} of the first parameter (as returned by
\method{getplist()} of the form \samp{\var{name}=\var{value}} for the \method{getplist()}) of the form \samp{\var{name}=\var{value}} for the
given \var{name}. If \var{value} is surrounded by quotes of the form given \var{name}. If \var{value} is surrounded by quotes of the form
`\code{<}...\code{>}' or `\code{"}...\code{"}', these are removed. `\code{<}...\code{>}' or `\code{"}...\code{"}', these are removed.
\end{methoddesc} \end{methoddesc}

View file

@ -580,7 +580,7 @@ entity instead of an internal entity.
\begin{datadescni}{XML_ERROR_BAD_CHAR_REF} \begin{datadescni}{XML_ERROR_BAD_CHAR_REF}
A character reference referred to a character which is illegal in XML A character reference referred to a character which is illegal in XML
(for example, character \code{0}, or `\code{\&\#0;}'. (for example, character \code{0}, or `\code{\&\#0;}').
\end{datadescni} \end{datadescni}
\begin{datadescni}{XML_ERROR_BINARY_ENTITY_REF} \begin{datadescni}{XML_ERROR_BINARY_ENTITY_REF}

View file

@ -96,7 +96,7 @@ and methods which format specific object types.
Formatting methods for specific types are implemented as methods Formatting methods for specific types are implemented as methods
with a name based on the type name. In the method name, \var{type} with a name based on the type name. In the method name, \var{type}
is replaced by is replaced by
\code{string.join(string.split(type(\var{obj}).__name__, '_')}. \code{string.join(string.split(type(\var{obj}).__name__, '_'))}.
Dispatch to these methods is handled by \method{repr1()}. Dispatch to these methods is handled by \method{repr1()}.
Type-specific methods which need to recursively format a value Type-specific methods which need to recursively format a value
should call \samp{self.repr1(\var{subobj}, \var{level} - 1)}. should call \samp{self.repr1(\var{subobj}, \var{level} - 1)}.