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

Method write

Lib/_pyio.py:1913–1915  ·  view source on GitHub ↗

Write string s to stream and returning an int.

(self, s)

Source from the content-addressed store, hash-verified

1911 self._unsupported("read")
1912
1913 def write(self, s):
1914 """Write string s to stream and returning an int."""
1915 self._unsupported("write")
1916
1917 def truncate(self, pos=None):
1918 """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