Commit 7283c211 authored by Alex Gaynor's avatar Alex Gaynor
Browse files

For another day

parent 21a1fddc
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -15,10 +15,9 @@ class ExpressionNode(tree.Node):
    MUL = '*'
    DIV = '/'
    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
                # have parameter substitution.
    MOD = '%%'

    # Bitwise operators - note that these are generated by .bitand()
    # and .bitor(), the '&' and '|' are reserved for boolean operator