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

Method more_in_buffer

Lib/_pyrepl/unix_console.py:202–206  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

200 self.cursor_visible = 1
201
202 def more_in_buffer(self) -> bool:
203 return bool(
204 self.input_buffer
205 and self.input_buffer_pos < len(self.input_buffer)
206 )
207
208 def __read(self, n: int) -> bytes:
209 if not self.more_in_buffer():

Callers 2

__readMethod · 0.95
waitMethod · 0.95

Calls 1

lenFunction · 0.85

Tested by

no test coverage detected