(self)
| 2009 | self.check_set_op_does_not_crash(f) |
| 2010 | |
| 2011 | def test_ior_with_mutation(self): |
| 2012 | def f(a, b): |
| 2013 | a |= b |
| 2014 | self.check_set_op_does_not_crash(f) |
| 2015 | |
| 2016 | def test_isub_with_mutation(self): |
| 2017 | def f(a, b): |
nothing calls this directly
no test coverage detected