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

Method read_input

Lib/pdb.py:3182–3185  ·  view source on GitHub ↗
(self, prompt, multiline_block)

Source from the content-addressed store, hash-verified

3180 return ret + sep
3181
3182 def read_input(self, prompt, multiline_block):
3183 self.multiline_block = multiline_block
3184 with self._sigint_raises_keyboard_interrupt():
3185 return input(prompt)
3186
3187 def read_command(self, prompt):
3188 reply = self.read_input(prompt, multiline_block=False)

Callers 1

read_commandMethod · 0.95

Calls 2

inputFunction · 0.85

Tested by

no test coverage detected