Home
last modified time | relevance | path

Searched refs:InteractiveConsole (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Doc/library/
Dcode.rst25 .. class:: InteractiveConsole([locals[, filename]])
35 of :class:`InteractiveConsole` and sets *readfunc* to be used as the
36 :meth:`InteractiveConsole.raw_input` method, if provided. If *local* is
37 provided, it is passed to the :class:`InteractiveConsole` constructor for
130 The :class:`InteractiveConsole` class is a subclass of
135 .. method:: InteractiveConsole.interact([banner])
144 .. method:: InteractiveConsole.push(line)
156 .. method:: InteractiveConsole.resetbuffer()
161 .. method:: InteractiveConsole.raw_input([prompt])
Dreadline.rst289 The following example extends the :class:`code.InteractiveConsole` class to
297 class HistoryConsole(code.InteractiveConsole):
300 code.InteractiveConsole.__init__(self, locals, filename)
/external/python/cpython2/Lib/
Dcode.py174 class InteractiveConsole(InteractiveInterpreter): class
298 console = InteractiveConsole(local)
Drexec.py566 class RestrictedConsole(code.InteractiveConsole):
569 r.s_apply(code.InteractiveConsole.runcode, (self, co))
/external/python/cpython2/Misc/
DHISTORY11216 InteractiveInterpreter and derived class InteractiveConsole. Fixed