Home
last modified time | relevance | path

Searched refs:pyshell (Results 1 – 25 of 38) sorted by relevance

12

/external/python/cpython3/Lib/idlelib/
Didle.pyw2 import idlelib.pyshell
4 # IDLE is not installed, but maybe pyshell is on sys.path:
5 from . import pyshell
7 idledir = os.path.dirname(os.path.abspath(pyshell.__file__))
15 pyshell.main()
17 idlelib.pyshell.main()
Ddebugger.py62 def __init__(self, pyshell, idb=None): argument
65 self.pyshell = pyshell
125 self.pyshell.close_debugger()
130 pyshell = self.pyshell
131 self.flist = pyshell.flist
132 self.root = root = pyshell.root
352 lv.load_dict(ldict, force, self.pyshell.interp.rpcclt)
354 gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)
367 for editwin in self.pyshell.flist.inversedict:
D__main__.py6 import idlelib.pyshell
7 idlelib.pyshell.main()
Dbrowser.py17 from idlelib import pyshell
98 flist = (pyshell.flist if not (self._htest or self._utest)
99 else pyshell.PyShellFileList(root))
DREADME.txt67 pyshell.py # Start IDLE, manage shell, complete editor window
163 Shell # pyshell
164 View Last Restart # pyshell.PyShell.view_restart_mark
165 Restart Shell # pyshell.PyShell.restart_shell
166 Interrupt Execution # pyshell.PyShell.cancel_callback
188 Python Shell # pyshell
Dpyshell.py192 debug = self.flist.pyshell.interp.debugger
220 debug = self.flist.pyshell.interp.debugger
235 debug = self.flist.pyshell.interp.debugger
336 pyshell = None variable in PyShellFileList
339 if self.pyshell:
340 self.pyshell.top.wakeup()
342 self.pyshell = PyShell(self)
343 if self.pyshell:
344 if not self.pyshell.begin():
346 return self.pyshell
[all …]
Didle.py13 from idlelib.pyshell import main # This is subject to change
Drunscript.py21 from idlelib import pyshell
142 if pyshell.use_subprocess and restart:
Ddebugger_r.py346 def start_remote_debugger(rpcclt, pyshell): argument
364 idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid)
365 gui = debugger.Debugger(pyshell, idb_proxy)
Dcalltip.py123 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
Dgrep.py195 from idlelib.pyshell import PyShellFileList
Dstackviewer.py128 from idlelib.pyshell import PyShellFileList
Dautocomplete.py174 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
/external/python/cpython3/Lib/idlelib/idle_test/
Dtest_pyshell.py4 from idlelib import pyshell
20 line = pyshell.restart_line(width, file)
28 self.assertEqual(pyshell.restart_line(width, ''), expect)
29 self.assertEqual(pyshell.restart_line(taglen+2, ''), expect+' =')
49 psfl = pyshell.PyShellFileList(self.root)
50 self.assertEqual(psfl.EditorWindow, pyshell.PyShellEditorWindow)
51 self.assertIsNone(psfl.pyshell)
64 regexp = pyshell.PyShell._last_newline_re
Dtest_editmenu.py10 from idlelib import pyshell
21 pyshell.fix_x11_paste(root)
Dtest_warning.py9 from idlelib import pyshell as shell
Dhtest.py68 import idlelib.pyshell # Set Windows DPI awareness before Tk().
Dtest_sidebar.py15 import idlelib.pyshell
16 from idlelib.pyshell import fix_x11_paste, PyShell, PyShellFileList
/external/python/cpython2/Lib/idlelib/
DDebugger.py57 def __init__(self, pyshell, idb=None): argument
60 self.pyshell = pyshell
120 self.pyshell.close_debugger()
125 pyshell = self.pyshell
126 self.flist = pyshell.flist
127 self.root = root = pyshell.root
347 lv.load_dict(ldict, force, self.pyshell.interp.rpcclt)
349 gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)
362 pyshell_edit_windows = self.pyshell.flist.inversedict.keys()
DPyShell.py176 debug = self.flist.pyshell.interp.debugger
204 debug = self.flist.pyshell.interp.debugger
219 debug = self.flist.pyshell.interp.debugger
319 pyshell = None variable in PyShellFileList
322 if self.pyshell:
323 self.pyshell.top.wakeup()
325 self.pyshell = PyShell(self)
326 if self.pyshell:
327 if not self.pyshell.begin():
329 return self.pyshell
[all …]
DRemoteDebugger.py337 def start_remote_debugger(rpcclt, pyshell): argument
355 idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid)
356 gui = Debugger.Debugger(pyshell, idb_proxy)
DCallTips.py99 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
DAutoComplete.py176 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
/external/python/cpython3/Tools/scripts/
Didle33 from idlelib.pyshell import main
/external/python/cpython3/Mac/IDLE/IDLE.app/Contents/Resources/
Didlemain.py71 from idlelib.pyshell import main

12