diff options
author | Paul McGuire <ptmcg@users.noreply.github.com> | 2018-12-24 12:31:34 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-24 12:31:34 -0600 |
commit | 7ee59bf9bec777b5a3f627dc2cfbde637ce9ebfc (patch) | |
tree | f420a7400fcd664e4cce5312f5a4690b9fedd921 /examples/LAparser.py | |
parent | 40deba322583925ad62d0afe2333b9301964ab69 (diff) | |
parent | 4f5c0933a0dce78641c097a8a060dfc103fef4b7 (diff) | |
download | pyparsing-git-7ee59bf9bec777b5a3f627dc2cfbde637ce9ebfc.tar.gz |
Merge pull request #57 from jdufresne/unused
Remove unused imports throughout project
Diffstat (limited to 'examples/LAparser.py')
-rw-r--r-- | examples/LAparser.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/examples/LAparser.py b/examples/LAparser.py index 8ffe073..3714975 100644 --- a/examples/LAparser.py +++ b/examples/LAparser.py @@ -57,11 +57,10 @@ Usage: To process LA equations embedded in source files, import this module and """
-import re,os,sys
+import re,sys
from pyparsing import Word, alphas, ParseException, Literal, CaselessLiteral \
-, Combine, Optional, nums, Or, Forward, OneOrMore, ZeroOrMore, \
- FollowedBy, StringStart, StringEnd, alphanums
-import math
+, Combine, Optional, nums, Forward, ZeroOrMore, \
+ StringEnd, alphanums
# Debugging flag can be set to either "debug_flag=True" or "debug_flag=False"
debug_flag=False
|