[Python-checkins] python/dist/src/Doc/lib libbase64.tex, 1.22, 1.22.4.1 libpickle.tex, 1.52, 1.52.2.1 libxmlrpclib.tex, 1.18, 1.18.2.1

jlgijsbers at users.sourceforge.net jlgijsbers at users.sourceforge.net
Sun Dec 12 17:51:51 CET 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20807/lib

Modified Files:
      Tag: release24-maint
	libbase64.tex libpickle.tex libxmlrpclib.tex 
Log Message:
Patch #1080684: typo repair. Thanks George Yoshida!

- Doc/lib/libbase64.tex
s/algorith/algorithm

- Doc/lib/libpickle.tex
s/interchangable/interchangeable

- Doc/lib/libxmlrpclib.tex
s/{_cmp__}/{__cmp__}

leading underscore needs to be double, not single.

- Doc/ref/ref6.tex
0/1 => False/True


Index: libbase64.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libbase64.tex,v
retrieving revision 1.22
retrieving revision 1.22.4.1
diff -u -d -r1.22 -r1.22.4.1
--- libbase64.tex	4 Jan 2004 01:14:01 -0000	1.22
+++ libbase64.tex	12 Dec 2004 16:51:48 -0000	1.22.4.1
@@ -12,7 +12,7 @@
 \rfc{3548}.  This standard defines the Base16, Base32, and Base64
 algorithms for encoding and decoding arbitrary binary strings into
 text strings that can be safely sent by email, used as parts of URLs,
-or included as part of an HTTP POST request.  The encoding algorith is
+or included as part of an HTTP POST request.  The encoding algorithm is
 not the same as the \program{uuencode} program.
 
 There are two interfaces provided by this module.  The modern

Index: libpickle.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libpickle.tex,v
retrieving revision 1.52
retrieving revision 1.52.2.1
diff -u -d -r1.52 -r1.52.2.1
--- libpickle.tex	7 Aug 2004 20:25:55 -0000	1.52
+++ libpickle.tex	12 Dec 2004 16:51:48 -0000	1.52.2.1
@@ -852,7 +852,7 @@
 
 There are additional minor differences in API between \module{cPickle}
 and \module{pickle}, however for most applications, they are
-interchangable.  More documentation is provided in the
+interchangeable.  More documentation is provided in the
 \module{pickle} module documentation, which
 includes a list of the documented differences.
 

Index: libxmlrpclib.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libxmlrpclib.tex,v
retrieving revision 1.18
retrieving revision 1.18.2.1
diff -u -d -r1.18 -r1.18.2.1
--- libxmlrpclib.tex	5 Sep 2004 19:42:15 -0000	1.18
+++ libxmlrpclib.tex	12 Dec 2004 16:51:48 -0000	1.18.2.1
@@ -184,7 +184,7 @@
 \end{methoddesc}
 
 It also supports certain of Python's built-in operators through 
-\method{_cmp__} and \method{__repr__} methods.
+\method{__cmp__} and \method{__repr__} methods.
 
 
 \subsection{Binary Objects \label{binary-objects}}
@@ -211,7 +211,7 @@
 \end{methoddesc}
 
 It also supports certain of Python's built-in operators through a
-\method{_cmp__()} method.
+\method{__cmp__()} method.
 
 
 \subsection{Fault Objects \label{fault-objects}}



More information about the Python-checkins mailing list