(self)
| 1626 | self.assert_compile(~or_(false()), "true") |
| 1627 | |
| 1628 | def test_single_bool_five(self): |
| 1629 | self.assert_compile(~or_(False), "true") |
| 1630 | |
| 1631 | def test_single_bool_six(self): |
| 1632 | self.assert_compile(and_(~or_(false())), "true") |
nothing calls this directly
no test coverage detected