|
| _MAX_INT = sys.maxsize |
|
tuple | str_type = (str, bytes) |
|
dict | _single_arg_builtins |
|
| _generatorType = types.GeneratorType |
|
| ParseImplReturnType = Tuple[int, Any] |
|
| PostParseReturnType = Union[ParseResults, Sequence[ParseResults]] |
|
| ParseAction |
|
| ParseCondition |
|
| ParseFailAction = Callable[[str, int, "ParserElement", Exception], None] |
|
| DebugStartAction = Callable[[str, int, "ParserElement", bool], None] |
|
| DebugSuccessAction |
|
| DebugExceptionAction = Callable[[str, int, "ParserElement", Exception, bool], None] |
|
| alphas = string.ascii_uppercase + string.ascii_lowercase |
|
| identchars = pyparsing_unicode.Latin1.identchars |
|
| identbodychars = pyparsing_unicode.Latin1.identbodychars |
|
str | nums = "0123456789" |
|
str | hexnums = nums + "ABCDEFabcdef" |
|
str | alphanums = alphas + nums |
|
str | printables = "".join([c for c in string.printable if c not in string.whitespace]) |
|
traceback | _trim_arity_call_line = None |
|
| Optional = Opt |
|
| empty = Empty().set_name("empty") |
|
| line_start = LineStart().set_name("line_start") |
|
| line_end = LineEnd().set_name("line_end") |
|
| string_start = StringStart().set_name("string_start") |
|
| string_end = StringEnd().set_name("string_end") |
|
| _escapedPunc |
|
| _escapedHexChar |
|
| _escapedOctChar |
|
tuple | _singleChar |
|
| _charRange = Group(_singleChar + Suppress("-") + _singleChar) |
|
tuple | _reBracketExpr |
|
| dbl_quoted_string |
|
| sgl_quoted_string |
|
| quoted_string |
|
| python_quoted_string |
|
| unicode_string = Combine("u" + quoted_string.copy()).set_name("unicode string literal") |
|
str | alphas8bit = srange(r"[\0xc0-\0xd6\0xd8-\0xf6\0xf8-\0xff]") |
|
str | punc8bit = srange(r"[\0xa1-\0xbf\0xd7\0xf7]") |
|
list | _builtin_exprs |
|
| sglQuotedString = sgl_quoted_string |
|
| dblQuotedString = dbl_quoted_string |
|
| quotedString = quoted_string |
|
| unicodeString = unicode_string |
|
| lineStart = line_start |
|
| lineEnd = line_end |
|
| stringStart = string_start |
|
| stringEnd = string_end |
|