diff options
Diffstat (limited to 'examples/idlParse.py')
-rw-r--r-- | examples/idlParse.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/idlParse.py b/examples/idlParse.py index 37cb363..1daaf24 100644 --- a/examples/idlParse.py +++ b/examples/idlParse.py @@ -6,9 +6,9 @@ # Copyright (c) 2003, Paul McGuire
#
-from pyparsing import Literal, CaselessLiteral, Word, OneOrMore, ZeroOrMore, \
- Forward, NotAny, delimitedList, oneOf, Group, Optional, Combine, alphas, nums, restOfLine, cStyleComment, \
- alphanums, printables, empty, quotedString, ParseException, ParseResults, Keyword, Regex
+from pyparsing import Literal, Word, OneOrMore, ZeroOrMore, \
+ Forward, delimitedList, Group, Optional, alphas, restOfLine, cStyleComment, \
+ alphanums, quotedString, ParseException, Keyword, Regex
import pprint
#~ import tree2image
|