(self)
| 759 | return A |
| 760 | |
| 761 | def test_nonassignable(self): |
| 762 | A = self._fixture(False) |
| 763 | a1 = A(_value=5) |
| 764 | assert_raises_message( |
| 765 | AttributeError, "can't set attribute", setattr, a1, "value", 10 |
| 766 | ) |
| 767 | |
| 768 | def test_nondeletable(self): |
| 769 | A = self._fixture(False) |
nothing calls this directly
no test coverage detected