BlockIt
|
Public Member Functions | |
def | __init__ |
def | parseImpl |
Public Attributes | |
matchWhite | |
name | |
mayReturnEmpty | |
errmsg | |
minLen | |
maxLen | |
Static Public Attributes | |
dictionary | whiteStrs |
Special matching class for matching whitespace. Normally, whitespace is ignored by pyparsing grammars. This class is included when some whitespace structures are significant. Define with a string containing the whitespace characters to be matched; default is " \\t\\r\\n". Also takes optional min, max, and exact arguments, as defined for the Word class.
Definition at line 1986 of file pyparsing.py.
def blockit::external::pyparsing::White::__init__ | ( | self, | |
ws = " \t\r\n" , |
|||
min = 1 , |
|||
max = 0 , |
|||
exact = 0 |
|||
) |
Definition at line 1999 of file pyparsing.py.
def blockit::external::pyparsing::White::parseImpl | ( | self, | |
instring, | |||
loc, | |||
doActions = True |
|||
) |
Reimplemented from blockit::external::pyparsing::ParserElement.
Definition at line 2020 of file pyparsing.py.
Reimplemented from blockit::external::pyparsing::Token.
Definition at line 1999 of file pyparsing.py.
Definition at line 1999 of file pyparsing.py.
Definition at line 1999 of file pyparsing.py.
Reimplemented from blockit::external::pyparsing::ParserElement.
Definition at line 1999 of file pyparsing.py.
Definition at line 1999 of file pyparsing.py.
Reimplemented from blockit::external::pyparsing::ParserElement.
Definition at line 1999 of file pyparsing.py.
dictionary blockit::external::pyparsing::White::whiteStrs [static] |
{ " " : "<SPC>", "\t": "<TAB>", "\n": "<LF>", "\r": "<CR>", "\f": "<FF>", }
Definition at line 1992 of file pyparsing.py.