(self)
| 174 | self.assertEqual(sys.getrefcount(b), oldrefcount) |
| 175 | |
| 176 | def test_delitem(self): |
| 177 | for tp in self._types: |
| 178 | b = tp(self._source) |
| 179 | m = self._view(b) |
| 180 | with self.assertRaises(TypeError): |
| 181 | del m[1] |
| 182 | with self.assertRaises(TypeError): |
| 183 | del m[1:4] |
| 184 | |
| 185 | def test_tobytes(self): |
| 186 | for tp in self._types: |
nothing calls this directly
no test coverage detected