Searched refs:InteractiveConsole (Results 1 – 5 of 5) sorted by relevance
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)
174 class InteractiveConsole(InteractiveInterpreter): class298 console = InteractiveConsole(local)
566 class RestrictedConsole(code.InteractiveConsole):569 r.s_apply(code.InteractiveConsole.runcode, (self, co))
11216 InteractiveInterpreter and derived class InteractiveConsole. Fixed