CMS 3D CMS Logo

Private Member Functions

argparse::RawDescriptionHelpFormatter Class Reference

Inheritance diagram for argparse::RawDescriptionHelpFormatter:
argparse::HelpFormatter argparse::HelpFormatter argparse::RawTextHelpFormatter argparse::RawTextHelpFormatter

List of all members.

Private Member Functions

def _fill_text
def _fill_text

Detailed Description

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.


Member Function Documentation

def argparse::RawDescriptionHelpFormatter::_fill_text (   self,
  text,
  width,
  indent 
) [private]

Reimplemented from argparse::HelpFormatter.

Definition at line 634 of file argparse.py.

00635                                              :
00636         return ''.join([indent + line for line in text.splitlines(True)])
00637 

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