Searched refs:runsource (Results 1 – 3 of 3) sorted by relevance
/third_party/python/Doc/library/ |
D | code.rst | 75 .. method:: InteractiveInterpreter.runsource(source, filename="<input>", symbol="single") 83 printed by calling the :meth:`showsyntaxerror` method. :meth:`runsource` 87 returned ``None``. :meth:`runsource` returns ``True``. 91 exceptions, except for :exc:`SystemExit`). :meth:`runsource` returns ``False``. 166 buffer and the interpreter's :meth:`runsource` method is called with the 171 dealt with in some way (this is the same as :meth:`runsource`).
|
/third_party/python/Lib/ |
D | code.py | 38 def runsource(self, source, filename="<input>", symbol="single"): member in InteractiveInterpreter 258 more = self.runsource(source, self.filename)
|
/third_party/python/Lib/idlelib/ |
D | pyshell.py | 695 def runsource(self, source): member in ModifiedInterpreter 702 return InteractiveInterpreter.runsource(self, source, filename) 1368 input_is_complete = self.interp.runsource(line)
|