[Python-checkins] r45670 - python/trunk/Lib/optparse.py

tim.peters python-checkins at python.org
Sun Apr 23 20:13:45 CEST 2006


Author: tim.peters
Date: Sun Apr 23 20:13:45 2006
New Revision: 45670

Modified:
   python/trunk/Lib/optparse.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/optparse.py
==============================================================================
--- python/trunk/Lib/optparse.py	(original)
+++ python/trunk/Lib/optparse.py	Sun Apr 23 20:13:45 2006
@@ -256,7 +256,7 @@
                              text_width,
                              initial_indent=indent,
                              subsequent_indent=indent)
-        
+
     def format_description(self, description):
         if description:
             return self._format_text(description) + "\n"
@@ -1212,7 +1212,7 @@
         """
         Declare that you are done with this OptionParser.  This cleans up
         reference cycles so the OptionParser (and all objects referenced by
-        it) can be garbage-collected promptly.  After calling destroy(), the 
+        it) can be garbage-collected promptly.  After calling destroy(), the
         OptionParser is unusable.
         """
         OptionContainer.destroy(self)


More information about the Python-checkins mailing list