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

Method write

Lib/tempfile.py:865–869  ·  view source on GitHub ↗
(self, s)

Source from the content-addressed store, hash-verified

863 return self._file.writable()
864
865 def write(self, s):
866 file = self._file
867 rv = file.write(s)
868 self._check(file)
869 return rv
870
871 def writelines(self, iterable):
872 if self._max_size == 0 or self._rolled:

Calls 1

_checkMethod · 0.95