CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Classes | Functions | Variables
argparse Namespace Reference

Classes

class  _ActionsContainer
 
class  _AppendAction
 
class  _AppendConstAction
 
class  _ArgumentGroup
 
class  _AttributeHolder
 
class  _CountAction
 
class  _HelpAction
 
class  _MutuallyExclusiveGroup
 
class  _StoreAction
 
class  _StoreConstAction
 
class  _StoreFalseAction
 
class  _StoreTrueAction
 
class  _SubParsersAction
 
class  _VersionAction
 
class  Action
 
class  ArgumentDefaultsHelpFormatter
 
class  ArgumentError
 
class  ArgumentParser
 
class  ArgumentTypeError
 
class  FileType
 
class  HelpFormatter
 
class  Namespace
 
class  RawDescriptionHelpFormatter
 
class  RawTextHelpFormatter
 

Functions

def _callable
 
def _ensure_value
 
def _get_action_name
 
def _sorted
 

Variables

list __all__
 
string __version__ = '1.1'
 
 _basestring = basestring
 
 _set = set
 
 _sorted = sorted
 
string _UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'
 
string action = 'ignore'
 
 category = DeprecationWarning,
 
string message = 'BaseException.message has been deprecated as of Python 2.6'
 
string module = 'argparse'
 
string ONE_OR_MORE = '+'
 
string OPTIONAL = '?'
 
string PARSER = 'A...'
 
string REMAINDER = '...'
 
string SUPPRESS = '==SUPPRESS=='
 
string ZERO_OR_MORE = '*'
 

Function Documentation

def argparse._callable (   obj)
private

Definition at line 95 of file argparse.py.

Referenced by argparse.ArgumentParser._get_value(), and argparse._ActionsContainer.add_argument().

95 
96 def _callable(obj):
97  return hasattr(obj, '__call__') or hasattr(obj, '__bases__')
98 
def _callable
Definition: argparse.py:95
def argparse._ensure_value (   namespace,
  name,
  value 
)
private

Definition at line 137 of file argparse.py.

Referenced by argparse._AppendAction.__call__(), argparse._AppendConstAction.__call__(), argparse._CountAction.__call__(), and argparse._AttributeHolder._get_args().

138 def _ensure_value(namespace, name, value):
139  if getattr(namespace, name, None) is None:
140  setattr(namespace, name, value)
141  return getattr(namespace, name)
142 
143 
144 # ===============
145 # Formatting Help
146 # ===============
def _ensure_value
Definition: argparse.py:137
def argparse._get_action_name (   argument)
private

Definition at line 670 of file argparse.py.

References join().

Referenced by argparse.ArgumentError.__init__(), argparse.ArgumentDefaultsHelpFormatter._get_help_string(), and argparse.ArgumentParser._parse_known_args().

671 def _get_action_name(argument):
672  if argument is None:
673  return None
674  elif argument.option_strings:
675  return '/'.join(argument.option_strings)
676  elif argument.metavar not in (None, SUPPRESS):
677  return argument.metavar
678  elif argument.dest not in (None, SUPPRESS):
679  return argument.dest
680  else:
681  return None
682 
static std::string join(char **cmd)
Definition: RemoteFile.cc:18
def _get_action_name
Definition: argparse.py:670
def argparse._sorted (   iterable,
  reverse = False 
)
private

Definition at line 114 of file argparse.py.

References _sorted, and list().

115  def _sorted(iterable, reverse=False):
116  result = list(iterable)
117  result.sort()
118  if reverse:
119  result.reverse()
120  return result
121 
# silence Python 2.6 buggy warnings about Exception.message
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run

Variable Documentation

list argparse.__all__
Initial value:
1 = [
2  'ArgumentParser',
3  'ArgumentError',
4  'ArgumentTypeError',
5  'FileType',
6  'HelpFormatter',
7  'ArgumentDefaultsHelpFormatter',
8  'RawDescriptionHelpFormatter',
9  'RawTextHelpFormatter',
10  'Namespace',
11  'Action',
12  'ONE_OR_MORE',
13  'OPTIONAL',
14  'PARSER',
15  'REMAINDER',
16  'SUPPRESS',
17  'ZERO_OR_MORE',
18 ]

Definition at line 65 of file argparse.py.

string argparse.__version__ = '1.1'

Definition at line 64 of file argparse.py.

argparse._basestring = basestring

Definition at line 106 of file argparse.py.

argparse._set = set

Definition at line 101 of file argparse.py.

Referenced by argparse.HelpFormatter._format_actions_usage(), argparse._ActionsContainer._get_optional_kwargs(), and argparse.ArgumentParser._parse_known_args().

argparse._sorted = sorted

Definition at line 111 of file argparse.py.

Referenced by argparse.HelpFormatter._format_actions_usage(), argparse._AttributeHolder._get_kwargs(), and _sorted().

string argparse._UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'

Definition at line 106 of file argparse.py.

string argparse.action = 'ignore'

Definition at line 125 of file argparse.py.

Referenced by argparse.ArgumentParser._parse_known_args().

argparse.category = DeprecationWarning,

Definition at line 127 of file argparse.py.

string argparse.message = 'BaseException.message has been deprecated as of Python 2.6'

Definition at line 126 of file argparse.py.

string argparse.module = 'argparse'

Definition at line 128 of file argparse.py.

string argparse.ONE_OR_MORE = '+'

Definition at line 103 of file argparse.py.

string argparse.OPTIONAL = '?'

Definition at line 101 of file argparse.py.

string argparse.PARSER = 'A...'

Definition at line 104 of file argparse.py.

string argparse.REMAINDER = '...'

Definition at line 105 of file argparse.py.

string argparse.SUPPRESS = '==SUPPRESS=='

Definition at line 99 of file argparse.py.

string argparse.ZERO_OR_MORE = '*'

Definition at line 102 of file argparse.py.