|
Gaudi Framework, version v23r10 |
| Home | Generated: Mon Sep 30 2013 |


Public Member Functions | |
| def | __init__ |
| def | parseImpl |
| def | __str__ |
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 | |
| initCharsOrig | |
| initChars | |
| bodyCharsOrig | |
| bodyChars | |
| maxSpecified | |
| minLen | |
| maxLen | |
| name | |
| errmsg | |
| mayIndexError | |
| asKeyword | |
| reString | |
| re | |
| strRepr | |
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) |
Token for matching words composed of allowed character sets. Defined with string containing all allowed initial characters, an optional string containing allowed body characters (if omitted, defaults to the initial character set), and an optional minimum, maximum, and/or exact length. The default value for min is 1 (a minimum value < 1 is not valid); the default values for max and exact are 0, meaning no maximum or exact length restriction.
Definition at line 1614 of file pyparsing.py.
| def pyparsing.Word.__init__ | ( | self, | |
| initChars, | |||
bodyChars = None, |
|||
min = 1, |
|||
max = 0, |
|||
exact = 0, |
|||
asKeyword = False |
|||
| ) |
Definition at line 1623 of file pyparsing.py.
| def pyparsing.Word.__str__ | ( | self | ) |
Definition at line 1719 of file pyparsing.py.
| def pyparsing.Word.parseImpl | ( | self, | |
| instring, | |||
| loc, | |||
doActions = True |
|||
| ) |
Definition at line 1674 of file pyparsing.py.
| pyparsing.Word.asKeyword |
Definition at line 1654 of file pyparsing.py.
| pyparsing.Word.bodyChars |
Definition at line 1629 of file pyparsing.py.
| pyparsing.Word.bodyCharsOrig |
Definition at line 1628 of file pyparsing.py.
| pyparsing.Word.errmsg |
Definition at line 1651 of file pyparsing.py.
| pyparsing.Word.initChars |
Definition at line 1626 of file pyparsing.py.
| pyparsing.Word.initCharsOrig |
Definition at line 1625 of file pyparsing.py.
| pyparsing.Word.maxLen |
Definition at line 1642 of file pyparsing.py.
| pyparsing.Word.maxSpecified |
Definition at line 1634 of file pyparsing.py.
| pyparsing.Word.mayIndexError |
Definition at line 1653 of file pyparsing.py.
| pyparsing.Word.minLen |
Definition at line 1639 of file pyparsing.py.
| pyparsing.Word.name |
Definition at line 1650 of file pyparsing.py.
| pyparsing.Word.re |
Definition at line 1670 of file pyparsing.py.
| pyparsing.Word.reString |
Definition at line 1658 of file pyparsing.py.
| pyparsing.Word.strRepr |
Definition at line 1735 of file pyparsing.py.