Searched refs:runsource (Results 1 – 8 of 8) sorted by relevance
/external/llvm-project/lldb/source/Interpreter/ |
D | embedded_interpreter.py | 132 repl.runsource(input_string) 134 repl.runsource(g_run_one_line_str)
|
/external/python/cpython2/Doc/library/ |
D | code.rst | 70 .. method:: InteractiveInterpreter.runsource(source[, filename[, symbol]]) 78 printed by calling the :meth:`showsyntaxerror` method. :meth:`runsource` 82 returned ``None``. :meth:`runsource` returns ``True``. 86 exceptions, except for :exc:`SystemExit`). :meth:`runsource` returns ``False``. 148 buffer and the interpreter's :meth:`runsource` method is called with the 153 dealt with in some way (this is the same as :meth:`runsource`).
|
/external/python/cpython3/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`).
|
/external/python/cpython2/Lib/ |
D | code.py | 51 def runsource(self, source, filename="<input>", symbol="single"): member in InteractiveInterpreter 265 more = self.runsource(source, self.filename)
|
/external/python/cpython3/Lib/ |
D | code.py | 38 def runsource(self, source, filename="<input>", symbol="single"): member in InteractiveInterpreter 258 more = self.runsource(source, self.filename)
|
/external/scapy/scapy/ |
D | autorun.py | 66 if interp.runsource(cmd):
|
/external/python/cpython3/Lib/idlelib/ |
D | pyshell.py | 676 def runsource(self, source): member in ModifiedInterpreter 683 return InteractiveInterpreter.runsource(self, source, filename) 1247 self.interp.runsource(line)
|
/external/python/cpython2/Lib/idlelib/ |
D | PyShell.py | 665 def runsource(self, source): member in ModifiedInterpreter 683 return InteractiveInterpreter.runsource(self, source, filename) 1248 self.interp.runsource(line)
|