```Python from io import StringIO class Test(StringIO): def test(self, offset): self.seek(offset) x = Test() x.test(0) ``` fails with >TypeError: an integer is required
fails with