diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-04-23 18:13:45 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-04-23 18:13:45 (GMT) |
commit | 81b7e57e49be161cd7b9230e2ebb6fa8df5b0af8 (patch) | |
tree | 0dc33ffbf64c0100b2f4a0b6a3f1060d05659063 | |
parent | 4383230b904c6bd453a562f7bf379887eb43d464 (diff) | |
download | cpython-81b7e57e49be161cd7b9230e2ebb6fa8df5b0af8.zip cpython-81b7e57e49be161cd7b9230e2ebb6fa8df5b0af8.tar.gz cpython-81b7e57e49be161cd7b9230e2ebb6fa8df5b0af8.tar.bz2 |
Whitespace normalization.
-rw-r--r-- | Lib/optparse.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/optparse.py b/Lib/optparse.py index f4c2c70..9ac987e 100644 --- a/Lib/optparse.py +++ b/Lib/optparse.py @@ -256,7 +256,7 @@ class HelpFormatter: 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 @@ class OptionParser (OptionContainer): """ 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) |