[Python-checkins] python/dist/src/Doc/lib libtextwrap.tex,1.7,1.8

bcannon at users.sourceforge.net bcannon at users.sourceforge.net
Sat Dec 11 10:53:55 CET 2004


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

Modified Files:
	libtextwrap.tex 
Log Message:
Setting textwrap.TextWrapper().expand_tabs to True calls expandtabs, not
expand_tabs, on the object being wrapped.


Index: libtextwrap.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libtextwrap.tex,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -d -r1.7 -r1.8
--- libtextwrap.tex	8 Feb 2004 18:09:32 -0000	1.7
+++ libtextwrap.tex	11 Dec 2004 09:53:52 -0000	1.8
@@ -97,7 +97,7 @@
 
 \begin{memberdesc}{expand_tabs}
 (default: \code{True}) If true, then all tab characters in \var{text}
-will be expanded to spaces using the \method{expand_tabs()} method of
+will be expanded to spaces using the \method{expandtabs()} method of
 \var{text}.
 \end{memberdesc}
 



More information about the Python-checkins mailing list