Skip to content

Commit

Permalink
MAI: rm unused from pyparsing import Upcase in dot_parser
Browse files Browse the repository at this point in the history
besides being unused, it has been deprecated,
and removed in pyparsing >= 2.1.0, by svn revision 320 [1].

[1] https://sourceforge.net/p/pyparsing/code/320/
  • Loading branch information
johnyf committed May 23, 2016
1 parent 98c59fc commit 09abd83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dot_parser.py
Expand Up @@ -22,7 +22,7 @@

from pyparsing import __version__ as pyparsing_version

from pyparsing import ( nestedExpr, Literal, CaselessLiteral, Word, Upcase, OneOrMore, ZeroOrMore,
from pyparsing import ( nestedExpr, Literal, CaselessLiteral, Word, OneOrMore, ZeroOrMore,
Forward, NotAny, delimitedList, oneOf, Group, Optional, Combine, alphas, nums,
restOfLine, cStyleComment, nums, alphanums, printables, empty, quotedString,
ParseException, ParseResults, CharsNotIn, _noncomma, dblQuotedString, QuotedString, ParserElement )
Expand Down

0 comments on commit 09abd83

Please sign in to comment.