Commit fd016158 authored by Ian Henriksen's avatar Ian Henriksen

Enable overloading the assignment operator.

parent 72e7dda3
...@@ -2547,7 +2547,7 @@ supported_overloaded_operators = cython.declare(set, set([ ...@@ -2547,7 +2547,7 @@ supported_overloaded_operators = cython.declare(set, set([
'+', '-', '*', '/', '%', '+', '-', '*', '/', '%',
'++', '--', '~', '|', '&', '^', '<<', '>>', ',', '++', '--', '~', '|', '&', '^', '<<', '>>', ',',
'==', '!=', '>=', '>', '<=', '<', '==', '!=', '>=', '>', '<=', '<',
'[]', '()', '!', '[]', '()', '!', '='
])) ]))
def p_c_simple_declarator(s, ctx, empty, is_type, cmethod_flag, def p_c_simple_declarator(s, ctx, empty, is_type, cmethod_flag,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment