|
|
__init__(self,
*args,
**kargs)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
get_match_file(self)
Get a function that will parse the contents of a file, returning a
sequence of (results, stream) pairs. |
source code
|
|
|
|
|
|
|
get_match_list(self)
Get a function that will parse the contents of a list returning a
sequence of (results, stream) pairs. |
source code
|
|
|
|
get_match_string(self)
Get a function that will parse the contents of a string returning a
sequence of (results, stream) pairs. |
source code
|
|
|
|
get_match_sequence(self)
Get a function that will parse the contents of a generic sequence
(with [] and len()) returning a sequence of (results, stream) pairs. |
source code
|
|
|
|
get_match(self)
Get a function that will parse input, returning a sequence of
(results, stream) pairs. |
source code
|
|
|
|
match_file(self,
file_,
**kargs)
Parse the contents of a file, returning a sequence of
(results, stream) pairs. |
source code
|
|
|
|
|
|
|
match_list(self,
list_,
**kargs)
Parse the contents of a list returning a sequence of (results, stream)
pairs. |
source code
|
|
|
|
match_string(self,
string,
**kargs)
Parse the contents of a string, returning a sequence of
(results, stream) pairs. |
source code
|
|
|
|
match_sequence(self,
sequence,
**kargs)
Parse the contents of a generic sequence (with [] and len())
returning a sequence of (results, stream) pairs. |
source code
|
|
|
|
match(self,
input_,
**kargs)
Parse input, returning a sequence of (results, stream) pairs. |
source code
|
|
|
|
|
|
|
|
|
|
get_parse_list(self)
Get a function that will parse the contents of a list returning a
single match. |
source code
|
|
|
|
get_parse_string(self)
Get a function that will parse the contents of a string returning a
single match. |
source code
|
|
|
|
get_parse_sequence(self)
Get a function that will parse the contents of a generic sequence
(with [] and len()) returning a single match. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
parse_list(self,
list_,
**kargs)
Parse the contents of a list returning a single match. |
source code
|
|
|
|
parse_string(self,
string,
**kargs)
Parse the contents of a string, returning a single match. |
source code
|
|
|
|
parse_sequence(self,
sequence,
**kargs)
Pparse the contents of a generic sequence (with [] and len())
returning a single match. |
source code
|
|
|
|
parse(self,
input_,
**kargs)
Parse the input, returning a single match. |
source code
|
|
|
|
|
|
|
|
|
|
get_parse_list_all(self)
Get a function that will parse the contents of a list returning a
sequence of matches. |
source code
|
|
|
|
get_parse_string_all(self)
Get a function that will parse a string, returning a sequence of
matches. |
source code
|
|
|
|
get_parse_sequence_all(self)
Get a function that will parse the contents of a generic sequence
(with [] and len()) returning a sequence of matches. |
source code
|
|
|
|
|
|
|
|
|
|
|
|
|
parse_list_all(self,
list_,
**kargs)
Parse the contents of a list returning a sequence of matches. |
source code
|
|
|
|
parse_string_all(self,
string,
**kargs)
Parse the contents of a string, returning a sequence of matches. |
source code
|
|
|
|
parse_sequence_all(self,
sequence,
**kargs)
Parse the contents of a generic sequence (with [] and len())
returning a sequence of matches. |
source code
|
|
|
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|