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

Method write

Lib/_pyio.py:1889–1891  ·  view source on GitHub ↗

Write string s to stream and returning an int.

(self, s)

Source from the content-addressed store, hash-verified

1887 self._unsupported("read")
1888
1889 def write(self, s):
1890 """Write string s to stream and returning an int."""
1891 self._unsupported("write")
1892
1893 def truncate(self, pos=None):
1894 """Truncate size to pos, where pos is an int."""

Callers

nothing calls this directly

Calls 1

_unsupportedMethod · 0.80

Tested by

no test coverage detected