| 202 | raise OSError |
| 203 | self._write_error_test(OSError, BadList()) |
| 204 | class BadItem: |
| 205 | def __str__(self): |
| 206 | raise OSError |
| 207 | self._write_error_test(OSError, [BadItem()]) |
| 208 | def test_write_bigfield(self): |
| 209 | # This exercises the buffer realloc functionality |
no outgoing calls
searching dependent graphs…