Skip to content

Commit

Permalink
parse: Minor code cleanup and commenting
Browse files Browse the repository at this point in the history
  • Loading branch information
JukkaL committed Jan 10, 2013
1 parent 02896e6 commit 9ea5bcd
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,9 @@
TypeParseError)


int HIGHEST_PREC = 14

precedence = {
'**': 15,
'-u': 14, '+u': 14, '~': 14,
'-u': 14, '+u': 14, '~': 14, # unary operators (-, + and ~)
'<cast>': 13,
'*': 12, '/': 12, '//': 12, '%': 12,
'+': 11, '-': 11,
Expand Down

0 comments on commit 9ea5bcd

Please sign in to comment.