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

Method __init__

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

Source from the content-addressed store, hash-verified

1419 """
1420
1421 def __init__(self, raw, buffer_size=DEFAULT_BUFFER_SIZE):
1422 raw._checkSeekable()
1423 BufferedReader.__init__(self, raw, buffer_size)
1424 BufferedWriter.__init__(self, raw, buffer_size)
1425
1426 def seek(self, pos, whence=0):
1427 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