MCPcopy Index your code
hub / github.com/RustPython/RustPython / __init__

Method __init__

Lib/_pyio.py:1402–1405  ·  view source on GitHub ↗
(self, raw, buffer_size=DEFAULT_BUFFER_SIZE)

Source from the content-addressed store, hash-verified

1400 """
1401
1402 def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):
1403 raw._checkSeekable()
1404 BufferedReader.__init__(self, raw, buffer_size)
1405 BufferedWriter.__init__(self, raw, buffer_size)
1406
1407 def seek(self, pos, whence=0):
1408 if whence not in valid_seek_flags:

Callers

nothing calls this directly

Calls 2

_checkSeekableMethod · 0.80
__init__Method · 0.45

Tested by

no test coverage detected