Home
last modified time | relevance | path

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

/external/python/cpython2/Doc/library/
Dcode.rst70 .. 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/
Dcode.rst75 .. 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/
Dcode.py51 def runsource(self, source, filename="<input>", symbol="single"): member in InteractiveInterpreter
265 more = self.runsource(source, self.filename)
/external/python/cpython3/Lib/
Dcode.py38 def runsource(self, source, filename="<input>", symbol="single"): member in InteractiveInterpreter
258 more = self.runsource(source, self.filename)
/external/scapy/scapy/
Dautorun.py66 if interp.runsource(cmd):
/external/python/cpython3/Lib/idlelib/
Dpyshell.py665 def runsource(self, source): member in ModifiedInterpreter
684 return InteractiveInterpreter.runsource(self, source, filename)
1249 self.interp.runsource(line)
/external/python/cpython2/Lib/idlelib/
DPyShell.py665 def runsource(self, source): member in ModifiedInterpreter
683 return InteractiveInterpreter.runsource(self, source, filename)
1248 self.interp.runsource(line)