diff options
author | Tim Peters <tim.peters@gmail.com> | 2006-06-11 19:42:51 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2006-06-11 19:42:51 (GMT) |
commit | 4f96f1f2b5068b8e8bd8d0f83f856b6e2883a3ab (patch) | |
tree | c53747593db6eac7dff992f88fec46f4318ae3ae /Lib/optparse.py | |
parent | 0d5d222959e0422b93065f0661b06061b713e5af (diff) | |
download | cpython-4f96f1f2b5068b8e8bd8d0f83f856b6e2883a3ab.zip cpython-4f96f1f2b5068b8e8bd8d0f83f856b6e2883a3ab.tar.gz cpython-4f96f1f2b5068b8e8bd8d0f83f856b6e2883a3ab.tar.bz2 |
Whitespace normalization.
Diffstat (limited to 'Lib/optparse.py')
-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 f0fad2c..ef382aa 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" @@ -1214,7 +1214,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) |