MCPcopy Index your code
hub / github.com/python/cpython / UnseekableIO

Class UnseekableIO

Lib/test/audiotests.py:8–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6
7
8class UnseekableIO(io.FileIO):
9 def tell(self):
10 raise io.UnsupportedOperation
11
12 def seek(self, *args, **kwargs):
13 raise io.UnsupportedOperation
14
15
16class AudioTests:

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…