Gaudi Framework, version v25r2

Home   Generated: Wed Jun 4 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.StringEnd Class Reference
Inheritance diagram for pyparsing.StringEnd:
Inheritance graph
[legend]
Collaboration diagram for pyparsing.StringEnd:
Collaboration graph
[legend]

Public Member Functions

def __init__
 
def parseImpl
 
- Public Member Functions inherited from pyparsing._PositionToken
def __init__
 
- Public Member Functions inherited from pyparsing.Token
def __init__
 
def setName
 
- 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

 errmsg
 
- Public Attributes inherited from pyparsing._PositionToken
 name
 
 mayReturnEmpty
 
 mayIndexError
 
- Public Attributes inherited from pyparsing.Token
 errmsg
 
- 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

Matches if current position is at the end of the parse string

Definition at line 2143 of file pyparsing.py.

Constructor & Destructor Documentation

def pyparsing.StringEnd.__init__ (   self)

Definition at line 2145 of file pyparsing.py.

2146  def __init__( self ):
2147  super(StringEnd,self).__init__()
2148  self.errmsg = "Expected end of text"
2149  #self.myException.msg = self.errmsg

Member Function Documentation

def pyparsing.StringEnd.parseImpl (   self,
  instring,
  loc,
  doActions = True 
)

Definition at line 2150 of file pyparsing.py.

2151  def parseImpl( self, instring, loc, doActions=True ):
2152  if loc < len(instring):
2153  #~ raise ParseException( instring, loc, "Expected end of text" )
2154  exc = self.myException
2155  exc.loc = loc
2156  exc.pstr = instring
2157  raise exc
2158  elif loc == len(instring):
2159  return loc+1, []
2160  elif loc > len(instring):
2161  return loc, []
2162  else:
2163  exc = self.myException
2164  exc.loc = loc
2165  exc.pstr = instring
2166  raise exc

Member Data Documentation

pyparsing.StringEnd.errmsg

Definition at line 2147 of file pyparsing.py.


The documentation for this class was generated from the following file:
Generated at Wed Jun 4 2014 14:49:07 for Gaudi Framework, version v25r2 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004