|
Gaudi Framework, version v24r2 |
| Home | Generated: Wed Dec 4 2013 |


Public Attributes | |
| expr | |
| mayReturnEmpty | |
| strRepr | |
| mayIndexError | |
| skipWhitespace | |
| saveAsList | |
| streamlined | |
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 | |
Private Attributes | |
| _revertClass | |
| __class__ | |
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) |
Forward declaration of an expression to be defined later -
used for recursive grammars, such as algebraic infix notation.
When the expression is known, it is assigned to the Forward variable using the '<<' operator.
Note: take care when assigning to Forward not to overlook precedence of operators.
Specifically, '|' has a lower precedence than '<<', so that::
fwdExpr << a | b | c
will actually be evaluated as::
(fwdExpr << a) | b | c
thereby leaving b and c out as parseable alternatives. It is recommended that you
explicitly group the values inserted into the Forward::
fwdExpr << (a | b | c)
Definition at line 2889 of file pyparsing.py.
| def pyparsing.Forward.__init__ | ( | self, | |
other = None |
|||
| ) |
Definition at line 2903 of file pyparsing.py.
| def pyparsing.Forward.__lshift__ | ( | self, | |
| other | |||
| ) |
Definition at line 2906 of file pyparsing.py.
| def pyparsing.Forward.__str__ | ( | self | ) |
Definition at line 2938 of file pyparsing.py.
| def pyparsing.Forward.copy | ( | self | ) |
| def pyparsing.Forward.leaveWhitespace | ( | self | ) |
Definition at line 2920 of file pyparsing.py.
| def pyparsing.Forward.streamline | ( | self | ) |
Definition at line 2924 of file pyparsing.py.
| def pyparsing.Forward.validate | ( | self, | |
validateTrace = [] |
|||
| ) |
Definition at line 2931 of file pyparsing.py.
|
private |
Definition at line 2943 of file pyparsing.py.
|
private |
Definition at line 2942 of file pyparsing.py.
| pyparsing.Forward.expr |
Definition at line 2909 of file pyparsing.py.
| pyparsing.Forward.mayIndexError |
Definition at line 2912 of file pyparsing.py.
| pyparsing.Forward.mayReturnEmpty |
Definition at line 2910 of file pyparsing.py.
| pyparsing.Forward.saveAsList |
Definition at line 2916 of file pyparsing.py.
| pyparsing.Forward.skipWhitespace |
Definition at line 2915 of file pyparsing.py.
| pyparsing.Forward.streamlined |
Definition at line 2926 of file pyparsing.py.
| pyparsing.Forward.strRepr |
Definition at line 2911 of file pyparsing.py.