Home
last modified time | relevance | path

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

/third_party/python/Doc/library/
Dcode.rst16 .. class:: InteractiveInterpreter(locals=None)
29 builds on :class:`InteractiveInterpreter` and adds prompting using the familiar
75 .. 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
/third_party/python/Lib/
Dcode.py15 class InteractiveInterpreter: class
162 class InteractiveConsole(InteractiveInterpreter):
180 InteractiveInterpreter.__init__(self, locals)
/third_party/python/Lib/idlelib/
Dpyshell.py35 from code import InteractiveInterpreter
424 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)
/third_party/python/Doc/whatsnew/
D3.5.rst895 The :func:`InteractiveInterpreter.showtraceback() <code.InteractiveInterpreter.showtraceback>`
/third_party/python/Misc/NEWS.d/
D3.10.0a1.rst1965 Stop codeop._maybe_compile, used by code.InteractiveInterpreter (and IDLE).
D3.5.0a1.rst2040 InteractiveInterpreter now displays the full chained traceback in its
/third_party/python/Misc/
DHISTORY28595 InteractiveInterpreter and derived class InteractiveConsole. Fixed