test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Private Member Functions
argparse.RawTextHelpFormatter Class Reference
Inheritance diagram for argparse.RawTextHelpFormatter:
argparse.RawDescriptionHelpFormatter argparse.HelpFormatter

Private Member Functions

def _split_lines
 

Additional Inherited Members

- Public Member Functions inherited from argparse.HelpFormatter
def __init__
 
def add_argument
 
def add_arguments
 
def add_text
 
def add_usage
 
def end_section
 
def format_help
 
def start_section
 

Detailed Description

Help message formatter which retains formatting of all help text.

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 655 of file argparse.py.

Member Function Documentation

def argparse.RawTextHelpFormatter._split_lines (   self,
  text,
  width 
)
private

Definition at line 662 of file argparse.py.

663  def _split_lines(self, text, width):
664  return text.splitlines()
665