Home
last modified time | relevance | path

Searched refs:pyshell (Results 1 – 25 of 29) 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()
D__main__.py6 import idlelib.pyshell
7 idlelib.pyshell.main()
Ddebugger.py99 def __init__(self, pyshell, idb=None): argument
110 self.pyshell = pyshell
172 self.pyshell.close_debugger()
178 pyshell = self.pyshell
179 self.flist = pyshell.flist
180 self.root = root = pyshell.root
396 lv.load_dict(ldict, force, self.pyshell.interp.rpcclt)
398 gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)
415 for editwin in self.pyshell.flist.inversedict:
Dbrowser.py16 from idlelib import pyshell
107 flist = (pyshell.flist if not (self._htest or self._utest)
108 else pyshell.PyShellFileList(root))
DREADME.txt67 pyshell.py # Start IDLE, manage shell, complete editor window
182 Python Shell # pyshell.Pyshell, pyshell.ModifiedInterpreter
184 Shell # pyshell
185 View Last Restart # pyshell.PyShell.view_restart_mark
186 Restart Shell # pyshell.PyShell.restart_shell
189 Interrupt Execution # pyshell.PyShell.cancel_callback
225 Defined in editor, PyShell.pyshell
Didle.py13 from idlelib.pyshell import main # This is subject to change
Dpyshell.py177 debug = self.flist.pyshell.interp.debugger
205 debug = self.flist.pyshell.interp.debugger
220 debug = self.flist.pyshell.interp.debugger
321 pyshell = None variable in PyShellFileList
324 if self.pyshell:
325 self.pyshell.top.wakeup()
327 self.pyshell = PyShell(self)
328 if self.pyshell:
329 if not self.pyshell.begin():
331 return self.pyshell
[all …]
Drunscript.py21 from idlelib import pyshell
142 if pyshell.use_subprocess and restart:
Ddebugger_r.py343 def start_remote_debugger(rpcclt, pyshell): argument
361 idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid)
362 gui = debugger.Debugger(pyshell, idb_proxy)
Dcalltip.py123 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
Dstackviewer.py117 from idlelib.pyshell import PyShellFileList
Dgrep.py195 from idlelib.pyshell import PyShellFileList
Dautocomplete.py174 rpcclt = self.editwin.flist.pyshell.interp.rpcclt
DHISTORY.txt119 pyshell.py ( changed startup behavior )
DNews3.txt389 bpo-36429: Fix starting IDLE with pyshell.
390 Add idlelib.pyshell alias at top; remove pyshell alias at bottom.
563 pyshell.py and report the problem on python-list or idle-dev@python.org.
/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_debugger.py97 cls.pyshell = Mock()
98 cls.pyshell.root = Mock()
101 cls.debugger = debugger.Debugger(cls.pyshell, cls.idb)
143 self.pyshell.flist = Mock()
144 self.pyshell.flist.inversedict = (
182 cls.pyshell = Mock()
183 cls.pyshell.root = root
197 self.debugger = debugger.Debugger(self.pyshell, self.idb)
210 self.pyshell.close_debugger.assert_called_once()
Dtest_editmenu.py10 from idlelib import pyshell
21 pyshell.fix_x11_paste(root)
Dtest_warning.py9 from idlelib import pyshell as shell
Dhtest.py66 import idlelib.pyshell # Set Windows DPI awareness before Tk().
Dtest_sidebar.py16 import idlelib.pyshell
17 from idlelib.pyshell import fix_x11_paste, PyShell, PyShellFileList
/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
/external/python/cpython3/Lib/idlelib/Icons/
DREADME.txt4 in pyshell following "# set application icon".
/external/python/cpython3/Misc/NEWS.d/
D3.8.0a4.rst1328 Fix starting IDLE with pyshell. Add idlelib.pyshell alias at top; remove
1329 pyshell alias at bottom. Remove obsolete __name__=='__main__' command.

12