Private Member Functions | |
def | _fill_text |
def | _fill_text |
Help message formatter which retains any formatting in descriptions. Only the name of this class is considered a public API. All the methods provided by the class are considered an implementation detail.
Definition at line 627 of file argparse.py.
def argparse::RawDescriptionHelpFormatter::_fill_text | ( | self, | |
text, | |||
width, | |||
indent | |||
) | [private] |
Reimplemented from argparse::HelpFormatter.
Definition at line 634 of file argparse.py.
def argparse::RawDescriptionHelpFormatter::_fill_text | ( | self, | |
text, | |||
width, | |||
indent | |||
) | [private] |
Reimplemented from argparse::HelpFormatter.
Definition at line 651 of file argparse.py.
00651 : 00652 return ''.join([indent + line for line in text.splitlines(True)]) 00653 00654