[Python-checkins] python/dist/src/Doc/ref ref3.tex, 1.121, 1.122 ref5.tex, 1.86, 1.87 ref6.tex, 1.74, 1.75

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sat Jan 1 01:29:17 CET 2005


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

Modified Files:
	ref3.tex ref5.tex ref6.tex 
Log Message:
SF Patch #1093896:  miscellaneous doc typos



Index: ref3.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref3.tex,v
retrieving revision 1.121
retrieving revision 1.122
diff -u -d -r1.121 -r1.122
--- ref3.tex	12 Aug 2004 18:12:43 -0000	1.121
+++ ref3.tex	1 Jan 2005 00:28:43 -0000	1.122
@@ -1328,7 +1328,7 @@
 
 \begin{methoddesc}[object]{__get__}{self, instance, owner}
 Called to get the attribute of the owner class (class attribute access)
-or of an instance of that class (instance attribute acces).
+or of an instance of that class (instance attribute access).
 \var{owner} is always the owner class, while \var{instance} is the
 instance that the attribute was accessed through, or \code{None} when
 the attribute is accessed through the \var{owner}.  This method should

Index: ref5.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref5.tex,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -d -r1.86 -r1.87
--- ref5.tex	11 Nov 2004 06:14:05 -0000	1.86
+++ ref5.tex	1 Jan 2005 00:28:43 -0000	1.87
@@ -262,7 +262,7 @@
 dictionary to store the corresponding datum.
 
 Restrictions on the types of the key values are listed earlier in
-section \ref{types}.  (To summarize,the key type should be hashable,
+section \ref{types}.  (To summarize, the key type should be hashable,
 which excludes all mutable objects.)  Clashes between duplicate keys
 are not detected; the last datum (textually rightmost in the display)
 stored for a given key value prevails.

Index: ref6.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ref/ref6.tex,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -d -r1.74 -r1.75
--- ref6.tex	12 Dec 2004 16:52:40 -0000	1.74
+++ ref6.tex	1 Jan 2005 00:28:44 -0000	1.75
@@ -497,7 +497,7 @@
 \begin{notice}
 In Python 2.2, the \keyword{yield} statement is only allowed
 when the \code{generators} feature has been enabled.  It will always
-be enabled in Python 2.3.  This \code{__future__} import statment can
+be enabled in Python 2.3.  This \code{__future__} import statement can
 be used to enable the feature:
 
 \begin{verbatim}



More information about the Python-checkins mailing list