/external/python/cpython3/Lib/idlelib/ |
D | idle.pyw | 2 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()
|
D | debugger.py | 62 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__.py | 6 import idlelib.pyshell 7 idlelib.pyshell.main()
|
D | browser.py | 17 from idlelib import pyshell 97 flist = (pyshell.flist if not (self._htest or self._utest) 98 else pyshell.PyShellFileList(root))
|
D | pyshell.py | 176 debug = self.flist.pyshell.interp.debugger 204 debug = self.flist.pyshell.interp.debugger 219 debug = self.flist.pyshell.interp.debugger 320 pyshell = None variable in PyShellFileList 323 if self.pyshell: 324 self.pyshell.top.wakeup() 326 self.pyshell = PyShell(self) 327 if self.pyshell: 328 if not self.pyshell.begin(): 330 return self.pyshell [all …]
|
D | README.txt | 67 pyshell.py # Start IDLE, manage shell, complete editor window 162 Shell # pyshell 163 View Last Restart # pyshell.PyShell.view_restart_mark 164 Restart Shell # pyshell.PyShell.restart_shell 165 Interrupt Execution # pyshell.PyShell.cancel_callback 187 Python Shell # pyshell
|
D | runscript.py | 20 from idlelib import pyshell 134 if pyshell.use_subprocess:
|
D | idle.py | 13 from idlelib.pyshell import main # This is subject to change
|
D | debugger_r.py | 346 def start_remote_debugger(rpcclt, pyshell): argument 364 idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid) 365 gui = debugger.Debugger(pyshell, idb_proxy)
|
D | calltip.py | 91 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
|
D | stackviewer.py | 128 from idlelib.pyshell import PyShellFileList
|
D | grep.py | 177 from idlelib.pyshell import PyShellFileList
|
D | autocomplete.py | 176 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_pyshell.py | 4 from idlelib import pyshell 27 psfl = pyshell.PyShellFileList(self.root) 28 self.assertEqual(psfl.EditorWindow, pyshell.PyShellEditorWindow) 29 self.assertIsNone(psfl.pyshell)
|
D | test_editmenu.py | 10 from idlelib import pyshell 21 pyshell.fix_x11_paste(root)
|
D | test_warning.py | 9 from idlelib import pyshell as shell
|
D | htest.py | 68 import idlelib.pyshell # Set Windows DPI awareness before Tk().
|
D | test_squeezer.py | 16 from idlelib.pyshell import PyShell
|
/external/python/cpython2/Lib/idlelib/ |
D | Debugger.py | 57 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()
|
D | PyShell.py | 176 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 …]
|
D | RemoteDebugger.py | 337 def start_remote_debugger(rpcclt, pyshell): argument 355 idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid) 356 gui = Debugger.Debugger(pyshell, idb_proxy)
|
D | CallTips.py | 99 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
|
D | AutoComplete.py | 176 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
|
/external/python/cpython3/Tools/scripts/ |
D | idle3 | 3 from idlelib.pyshell import main
|
/external/python/cpython3/Mac/IDLE/IDLE.app/Contents/Resources/ |
D | idlemain.py | 71 from idlelib.pyshell import main
|