/third_party/python/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 | __main__.py | 6 import idlelib.pyshell 7 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 | browser.py | 17 from idlelib import pyshell 98 flist = (pyshell.flist if not (self._htest or self._utest) 99 else pyshell.PyShellFileList(root))
|
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 | pyshell.py | 192 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 …]
|
D | idle.py | 13 from idlelib.pyshell import main # This is subject to change
|
D | runscript.py | 21 from idlelib import pyshell 142 if pyshell.use_subprocess and restart:
|
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 | 123 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
|
D | grep.py | 195 from idlelib.pyshell import PyShellFileList
|
D | stackviewer.py | 128 from idlelib.pyshell import PyShellFileList
|
D | autocomplete.py | 174 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
|
D | HISTORY.txt | 119 pyshell.py ( changed startup behavior )
|
D | NEWS.txt | 253 bpo-36429: Fix starting IDLE with pyshell. 254 Add idlelib.pyshell alias at top; remove pyshell alias at bottom. 427 pyshell.py and report the problem on python-list or idle-dev@python.org.
|
/third_party/python/Lib/idlelib/idle_test/ |
D | test_pyshell.py | 4 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
|
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_sidebar.py | 15 import idlelib.pyshell 16 from idlelib.pyshell import fix_x11_paste, PyShell, PyShellFileList
|
/third_party/python/Tools/scripts/ |
D | idle3 | 3 from idlelib.pyshell import main
|
/third_party/python/Mac/IDLE/IDLE.app/Contents/Resources/ |
D | idlemain.py | 71 from idlelib.pyshell import main
|
/third_party/python/Misc/NEWS.d/ |
D | 3.8.0a4.rst | 1328 Fix starting IDLE with pyshell. Add idlelib.pyshell alias at top; remove 1329 pyshell alias at bottom. Remove obsolete __name__=='__main__' command.
|
/third_party/python/Doc/library/ |
D | decimal.rst | 295 File "<pyshell#143>", line 1, in -toplevel- 327 File "<pyshell#112>", line 1, in -toplevel-
|
D | collections.rst | 633 File "<pyshell#6>", line 1, in -toplevel-
|