diff options
Diffstat (limited to 'examples/excelExpr.py')
-rw-r--r-- | examples/excelExpr.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/excelExpr.py b/examples/excelExpr.py index 913d65b..57a3f90 100644 --- a/examples/excelExpr.py +++ b/examples/excelExpr.py @@ -5,7 +5,7 @@ # A partial implementation of a parser of Excel formula expressions.
#
from pyparsing import (CaselessKeyword, Suppress, Word, alphas,
- alphanums, nums, Optional, Group, oneOf, Forward, Regex,
+ alphanums, nums, Optional, Group, oneOf, Forward,
infixNotation, opAssoc, dblQuotedString, delimitedList,
Combine, Literal, QuotedString, ParserElement, pyparsing_common)
ParserElement.enablePackrat()
|