[Python-checkins] python/dist/src/Lib textwrap.py,1.35,1.36

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Mon Jan 3 08:14:15 CET 2005


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16879

Modified Files:
	textwrap.py 
Log Message:
Removed unused line.

Index: textwrap.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/textwrap.py,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- textwrap.py	3 Jun 2004 01:59:40 -0000	1.35
+++ textwrap.py	3 Jan 2005 07:14:12 -0000	1.36
@@ -267,7 +267,6 @@
         converted to space.
         """
         text = self._munge_whitespace(text)
-        indent = self.initial_indent
         chunks = self._split(text)
         if self.fix_sentence_endings:
             self._fix_sentence_endings(chunks)



More information about the Python-checkins mailing list