Searched refs:InteractiveConsole (Results 1 – 25 of 26) sorted by relevance
12
25 .. class:: InteractiveConsole([locals[, filename]])35 of :class:`InteractiveConsole` and sets *readfunc* to be used as the36 :meth:`InteractiveConsole.raw_input` method, if provided. If *local* is37 provided, it is passed to the :class:`InteractiveConsole` constructor for130 The :class:`InteractiveConsole` class is a subclass of135 .. method:: InteractiveConsole.interact([banner])144 .. method:: InteractiveConsole.push(line)156 .. method:: InteractiveConsole.resetbuffer()161 .. method:: InteractiveConsole.raw_input([prompt])
289 The following example extends the :class:`code.InteractiveConsole` class to297 class HistoryConsole(code.InteractiveConsole):300 code.InteractiveConsole.__init__(self, locals, filename)
26 .. class:: InteractiveConsole(locals=None, filename="<console>")36 instance of :class:`InteractiveConsole` and sets *readfunc* to be used as37 the :meth:`InteractiveConsole.raw_input` method, if provided. If *local* is38 provided, it is passed to the :class:`InteractiveConsole` constructor for138 The :class:`InteractiveConsole` class is a subclass of143 .. method:: InteractiveConsole.interact(banner=None, exitmsg=None)162 .. method:: InteractiveConsole.push(line)174 .. method:: InteractiveConsole.resetbuffer()179 .. method:: InteractiveConsole.raw_input(prompt="")
336 The following example extends the :class:`code.InteractiveConsole` class to344 class HistoryConsole(code.InteractiveConsole):347 code.InteractiveConsole.__init__(self, locals, filename)
162 class InteractiveConsole(InteractiveInterpreter): class293 console = InteractiveConsole(local)
174 class InteractiveConsole(InteractiveInterpreter): class298 console = InteractiveConsole(local)
566 class RestrictedConsole(code.InteractiveConsole):569 r.s_apply(code.InteractiveConsole.runcode, (self, co))
14 class AsyncIOInteractiveConsole(code.InteractiveConsole):
123 repl = code.InteractiveConsole(local_dict)
16 self.console = code.InteractiveConsole()
META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE META- ...
6663 - Issue #12643: `code.InteractiveConsole` now respects `sys.excepthook` when28595 InteractiveInterpreter and derived class InteractiveConsole. Fixed