Gaudi Framework, version v23r10

Home   Generated: Mon Sep 30 2013
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | Public Attributes | List of all members
pyparsing.WordStart Class Reference
Inheritance diagram for pyparsing.WordStart:
Inheritance graph
[legend]
Collaboration diagram for pyparsing.WordStart:
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

 wordChars
 
 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 the current position is at the beginning of a Word, and
   is not preceded by any character in a given set of wordChars
   (default=printables). To emulate the \b behavior of regular expressions,
   use WordStart(alphanums). WordStart will also match at the beginning of
   the string being parsed, or at the beginning of a line.

Definition at line 2167 of file pyparsing.py.

Constructor & Destructor Documentation

def pyparsing.WordStart.__init__ (   self,
  wordChars = printables 
)

Definition at line 2174 of file pyparsing.py.

2175  def __init__(self, wordChars = printables):
2176  super(WordStart,self).__init__()
2177  self.wordChars = _str2dict(wordChars)
2178  self.errmsg = "Not at the start of a word"

Member Function Documentation

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

Definition at line 2179 of file pyparsing.py.

2180  def parseImpl(self, instring, loc, doActions=True ):
2181  if loc != 0:
2182  if (instring[loc-1] in self.wordChars or
2183  instring[loc] not in self.wordChars):
2184  exc = self.myException
2185  exc.loc = loc
2186  exc.pstr = instring
2187  raise exc
2188  return loc, []

Member Data Documentation

pyparsing.WordStart.errmsg

Definition at line 2177 of file pyparsing.py.

pyparsing.WordStart.wordChars

Definition at line 2176 of file pyparsing.py.


The documentation for this class was generated from the following file:
Generated at Mon Sep 30 2013 14:52:09 for Gaudi Framework, version v23r10 by Doxygen version 1.8.2 written by Dimitri van Heesch, © 1997-2004