For another day
This commit is contained in:
parent
21a1fddcc4
commit
7283c21173
|
@ -15,10 +15,9 @@ class ExpressionNode(tree.Node):
|
||||||
MUL = '*'
|
MUL = '*'
|
||||||
DIV = '/'
|
DIV = '/'
|
||||||
POW = '^'
|
POW = '^'
|
||||||
# This is a quoted % operator - it is quoted
|
MOD = '%%' # This is a quoted % operator - it is quoted
|
||||||
# because it can be used in strings that also
|
# because it can be used in strings that also
|
||||||
# have parameter substitution.
|
# have parameter substitution.
|
||||||
MOD = '%%'
|
|
||||||
|
|
||||||
# Bitwise operators - note that these are generated by .bitand()
|
# Bitwise operators - note that these are generated by .bitand()
|
||||||
# and .bitor(), the '&' and '|' are reserved for boolean operator
|
# and .bitor(), the '&' and '|' are reserved for boolean operator
|
||||||
|
|
Loading…
Reference in New Issue