(self)
| 2004 | self.check_set_op_does_not_crash(lambda a, b: a ^ b) |
| 2005 | |
| 2006 | def test_iadd_with_mutation(self): |
| 2007 | def f(a, b): |
| 2008 | a &= b |
| 2009 | self.check_set_op_does_not_crash(f) |
| 2010 | |
| 2011 | def test_ior_with_mutation(self): |
| 2012 | def f(a, b): |
nothing calls this directly
no test coverage detected