Searched refs:InteractiveInterpreter (Results 1 – 4 of 4) sorted by relevance
15 .. class:: InteractiveInterpreter([locals])28 builds on :class:`InteractiveInterpreter` and adds prompting using the familiar70 .. method:: InteractiveInterpreter.runsource(source[, filename[, symbol]])92 .. method:: InteractiveInterpreter.runcode(code)103 .. method:: InteractiveInterpreter.showsyntaxerror([filename])112 .. method:: InteractiveInterpreter.showtraceback()119 .. method:: InteractiveInterpreter.write(data)131 :class:`InteractiveInterpreter`, and so offers all the methods of the
28 class InteractiveInterpreter: class174 class InteractiveConsole(InteractiveInterpreter):192 InteractiveInterpreter.__init__(self, locals)
16 from code import InteractiveInterpreter388 class ModifiedInterpreter(InteractiveInterpreter):393 InteractiveInterpreter.__init__(self, locals=locals)660 InteractiveInterpreter.showsyntaxerror(self, filename)683 return InteractiveInterpreter.runsource(self, source, filename)734 InteractiveInterpreter.showsyntaxerror(self, filename)756 InteractiveInterpreter.showtraceback(self)
11216 InteractiveInterpreter and derived class InteractiveConsole. Fixed