(self, item)
| 827 | return 100 |
| 828 | |
| 829 | def __getitem__(self, item): |
| 830 | if item == 50: |
| 831 | raise RuntimeError("Bad things happened!") |
| 832 | return f"{item}, {item+1}" |
| 833 | |
| 834 | with pytest.raises(RuntimeError, match="Bad things happened!"): |
| 835 | np.loadtxt(BadSequence(), dtype=int, delimiter=",") |
nothing calls this directly
no outgoing calls
no test coverage detected