Home
last modified time | relevance | path

Searched refs:InteractiveInterpreter (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Doc/library/
Dcode.rst15 .. class:: InteractiveInterpreter([locals])
28 builds on :class:`InteractiveInterpreter` and adds prompting using the familiar
70 .. 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
/external/python/cpython2/Lib/
Dcode.py28 class InteractiveInterpreter: class
174 class InteractiveConsole(InteractiveInterpreter):
192 InteractiveInterpreter.__init__(self, locals)
/external/python/cpython2/Lib/idlelib/
DPyShell.py16 from code import InteractiveInterpreter
388 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)
/external/python/cpython2/Misc/
DHISTORY11216 InteractiveInterpreter and derived class InteractiveConsole. Fixed