Commit 13ed6df5 authored by Chris McDonough's avatar Chris McDonough

took out augmented assignment for compatibility with 1.5.2

parent 7d87b013
......@@ -880,11 +880,11 @@ class MagicMethodTests(unittest.TestCase):
pass
object = PythonClass(1)
object += 1
object = object + 1
assert object.value == 2
object = self.fixup_inst(DerivedClass(1))
object += 1
object = object + 1
assert object.value == 2
......
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