Trees | Indices | Help |
---|
|
|
|||
Pattern | |||
SubPattern | |||
Tokenizer |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|
|||
SPECIAL_CHARS = ".\\[{()*+?^$|"
|
|||
REPEAT_CHARS = "*+?{"
|
|||
DIGITS = tuple("0123456789")
|
|||
OCTDIGITS = tuple("01234567")
|
|||
HEXDIGITS = tuple("0123456789abcdefABCDEF")
|
|||
WHITESPACE = tuple(" \t\n\r\v\f")
|
|||
ESCAPES = {r"\a":(LITERAL, ord("\a")), r"\b":(LITERAL, ord("\b
|
|||
CATEGORIES = {r"\A":(AT, AT_BEGINNING_STRING), r"\b":(AT, AT_B
|
|||
FLAGS = {"i": SRE_FLAG_IGNORECASE, "L": SRE_FLAG_LOCALE, "m":
|
|||
atoi = string.atoi
|
|||
_name_with_attr_pattern = re.compile(r
|
|
ESCAPES
|
CATEGORIES
|
FLAGS
|
_name_with_attr_pattern
|
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Thu Dec 25 10:43:35 2008 | http://epydoc.sourceforge.net |