[Zodb-checkins] CVS: ZODB3/Doc/guide - modules.tex:1.7
Jeremy Hylton
jeremy at zope.com
Thu May 1 17:05:13 EDT 2003
Update of /cvs-repository/ZODB3/Doc/guide
In directory cvs.zope.org:/tmp/cvs-serv4449
Modified Files:
modules.tex
Log Message:
Backslash normalization.
=== ZODB3/Doc/guide/modules.tex 1.6 => 1.7 ===
--- ZODB3/Doc/guide/modules.tex:1.6 Thu May 1 15:51:43 2003
+++ ZODB3/Doc/guide/modules.tex Thu May 1 16:05:12 2003
@@ -170,7 +170,7 @@
\item Transitivity. Whenever \code{\var{x} <= \var{y}} and
\code{\var{y} <= \var{z}}, it's also true that
\code{\var{x} <= \var{z}}.
-end{enumerate}
+\end{enumerate}
The default comparison functions for most objects that come with Python
satisfy these rules, with some crucial cautions explained later. Complex
@@ -268,7 +268,7 @@
Another problem occurs with instances of classes that do define
\method{__cmp__()}, but define it incorrectly. It's possible but
-rare for a custom \method\{__cmp__()} implementation to violate one
+rare for a custom \method{__cmp__()} implementation to violate one
of the three required formal properties directly. It's more common for
it to fall back" to address-based comparison by mistake.
For example,
@@ -313,4 +313,4 @@
Any part of a comparison implementation that relies (explicitly
or implicitly) on an address-based comparison result will
eventually cause serious failure.
-end{enumerate}
+\end{enumerate}
More information about the Zodb-checkins
mailing list