[Python-checkins] python/dist/src/Lib textwrap.py, 1.35.4.2, 1.35.4.3

rhettinger@users.sourceforge.net rhettinger at users.sourceforge.net
Thu Sep 15 19:22:02 CEST 2005


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

Modified Files:
      Tag: release24-maint
	textwrap.py 
Log Message:
Removed assignment to an unused variable.

Index: textwrap.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/textwrap.py,v
retrieving revision 1.35.4.2
retrieving revision 1.35.4.3
diff -u -d -r1.35.4.2 -r1.35.4.3
--- textwrap.py	15 Sep 2005 05:09:30 -0000	1.35.4.2
+++ textwrap.py	15 Sep 2005 17:21:59 -0000	1.35.4.3
@@ -272,7 +272,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