Searched refs:InteractiveInterpreter (Results 1 – 7 of 7) sorted by relevance
16 .. class:: InteractiveInterpreter(locals=None)29 builds on :class:`InteractiveInterpreter` and adds prompting using the familiar75 .. method:: InteractiveInterpreter.runsource(source, filename="<input>", symbol="single")97 .. method:: InteractiveInterpreter.runcode(code)108 .. method:: InteractiveInterpreter.showsyntaxerror(filename=None)117 .. method:: InteractiveInterpreter.showtraceback()127 .. method:: InteractiveInterpreter.write(data)139 :class:`InteractiveInterpreter`, and so offers all the methods of the
15 class InteractiveInterpreter: class162 class InteractiveConsole(InteractiveInterpreter):180 InteractiveInterpreter.__init__(self, locals)
35 from code import InteractiveInterpreter424 class ModifiedInterpreter(InteractiveInterpreter):429 InteractiveInterpreter.__init__(self, locals=locals)690 InteractiveInterpreter.showsyntaxerror(self, filename)702 return InteractiveInterpreter.runsource(self, source, filename)754 InteractiveInterpreter.showtraceback(self)
895 The :func:`InteractiveInterpreter.showtraceback() <code.InteractiveInterpreter.showtraceback>`
1965 Stop codeop._maybe_compile, used by code.InteractiveInterpreter (and IDLE).
2040 InteractiveInterpreter now displays the full chained traceback in its
28595 InteractiveInterpreter and derived class InteractiveConsole. Fixed