Gaudi Framework, version v25r0

Home   Generated: Mon Feb 17 2014
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | Public Attributes | List of all members
pyparsing.Group Class Reference
Inheritance diagram for pyparsing.Group:
Inheritance graph
[legend]
Collaboration diagram for pyparsing.Group:
Collaboration graph
[legend]

Public Member Functions

def __init__
 
def postParse
 
- Public Member Functions inherited from pyparsing.TokenConverter
def __init__
 
- Public Member Functions inherited from pyparsing.ParseElementEnhance
def __init__
 
def parseImpl
 
def leaveWhitespace
 
def ignore
 
def streamline
 
def checkRecursion
 
def validate
 
def __str__
 
- Public Member Functions inherited from pyparsing.ParserElement
def setDefaultWhitespaceChars
 
def __init__
 
def copy
 
def setName
 
def setResultsName
 
def setBreak
 
def setParseAction
 
def addParseAction
 
def setFailAction
 
def preParse
 
def parseImpl
 
def postParse
 
def tryParse
 
def resetCache
 
def enablePackrat
 
def parseString
 
def scanString
 
def transformString
 
def searchString
 
def __add__
 
def __radd__
 
def __sub__
 
def __rsub__
 
def __mul__
 
def __rmul__
 
def __or__
 
def __ror__
 
def __xor__
 
def __rxor__
 
def __and__
 
def __rand__
 
def __invert__
 
def __call__
 
def suppress
 
def leaveWhitespace
 
def setWhitespaceChars
 
def parseWithTabs
 
def ignore
 
def setDebugActions
 
def setDebug
 
def __str__
 
def __repr__
 
def streamline
 
def checkRecursion
 
def validate
 
def parseFile
 
def getException
 
def __getattr__
 
def __eq__
 
def __ne__
 
def __hash__
 
def __req__
 
def __rne__
 

Public Attributes

 saveAsList
 
- Public Attributes inherited from pyparsing.TokenConverter
 saveAsList
 
- Public Attributes inherited from pyparsing.ParseElementEnhance
 expr
 
 strRepr
 
 mayIndexError
 
 mayReturnEmpty
 
 skipWhitespace
 
 saveAsList
 
 callPreparse
 
- Public Attributes inherited from pyparsing.ParserElement
 parseAction
 
 failAction
 
 strRepr
 
 resultsName
 
 saveAsList
 
 skipWhitespace
 
 whiteChars
 
 copyDefaultWhiteChars
 
 mayReturnEmpty
 
 keepTabs
 
 ignoreExprs
 
 debug
 
 streamlined
 
 mayIndexError
 
 errmsg
 
 modalResults
 
 debugActions
 
 re
 
 callPreparse
 
 callDuringTry
 
 name
 
 myException
 

Additional Inherited Members

- Static Public Attributes inherited from pyparsing.ParserElement
string DEFAULT_WHITE_CHARS " \n\t\r"
 
tuple setDefaultWhitespaceChars staticmethod(setDefaultWhitespaceChars)
 
tuple resetCache staticmethod(resetCache)
 
tuple enablePackrat staticmethod(enablePackrat)
 

Detailed Description

Converter to return the matched tokens as a list - useful for returning tokens of ZeroOrMore and OneOrMore expressions.

Definition at line 3013 of file pyparsing.py.

Constructor & Destructor Documentation

def pyparsing.Group.__init__ (   self,
  expr 
)

Definition at line 3015 of file pyparsing.py.

3016  def __init__( self, expr ):
3017  super(Group,self).__init__( expr )
3018  self.saveAsList = True

Member Function Documentation

def pyparsing.Group.postParse (   self,
  instring,
  loc,
  tokenlist 
)

Definition at line 3019 of file pyparsing.py.

3020  def postParse( self, instring, loc, tokenlist ):
3021  return [ tokenlist ]

Member Data Documentation

pyparsing.Group.saveAsList

Definition at line 3017 of file pyparsing.py.


The documentation for this class was generated from the following file:
Generated at Mon Feb 17 2014 14:38:22 for Gaudi Framework, version v25r0 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004