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

Method flush

Lib/_pyio.py:2221–2223  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

2219 return self.buffer.writable()
2220
2221 def flush(self):
2222 self.buffer.flush()
2223 self._telling = self._seekable
2224
2225 def close(self):
2226 if self.buffer is not None and not self.closed:

Callers 15

reconfigureMethod · 0.95
closeMethod · 0.95
writeMethod · 0.95
tellMethod · 0.95
truncateMethod · 0.95
detachMethod · 0.95
seekMethod · 0.95
test_newlines_outputMethod · 0.95
test_writelinesMethod · 0.95

Calls 1

flushMethod · 0.45