Searched refs:PyShell (Results 1 – 25 of 34) sorted by relevance
12
/aosp_15_r20/external/python/cpython2/Lib/idlelib/ |
D | idle.pyw | 2 import idlelib.PyShell 4 # IDLE is not installed, but maybe PyShell is on sys.path: 5 import PyShell 7 idledir = os.path.dirname(os.path.abspath(PyShell.__file__)) 15 PyShell.main() 17 idlelib.PyShell.main()
|
D | README.txt | 58 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 170 Debugger # Debugger, RemoteDebugger, PyShell.toggle_debuger 171 Stack Viewer # StackViewer, PyShell.open_stack_viewer 188 Python Shell # PyShell 220 Defined in EditorWindow, PyShell, Output
|
D | ChangeLog | 42 * PyShell.py, idle, idles: Implement idle command interface as 43 suggested by GvR [idle-dev] 16 July **************** PyShell: Added 87 * PyShell.py: Call out IDLE Fork in startup message. 91 * PyShell.py, setup.py: Add a script "idles" which opens a Python 149 * PyShell.py: py-cvs-2001_07_13 (Rev 1.34) merge 152 found a bug here. Here's the deal: Class PyShell derives from 153 class OutputWindow. Method PyShell.close() wants to invoke its 154 parent method, but because PyShell long ago was inherited from 210 PyShell.py, StackViewer.py, extend.txt, idle.py, keydefs.py: Import 247 * PyShell.py: cvs-py-rel2_1 (Rev 1.29 - 1.33) merge [all …]
|
D | run.py | 17 from idlelib import PyShell 35 file.write(PyShell.idle_formatwarning( 280 sys.stdin = PyShell.PseudoInputFile(self.console, "stdin", 282 sys.stdout = PyShell.PseudoOutputFile(self.console, "stdout", 284 sys.stderr = PyShell.PseudoOutputFile(self.console, "stderr",
|
D | ClassBrowser.py | 17 from idlelib import PyShell 35 file_open = PyShell.flist.open 98 PyShell.flist.open(self.file) 229 flist = PyShell.PyShellFileList(parent)
|
D | ScriptBinding.py | 26 from idlelib import PyShell 149 if PyShell.use_subprocess:
|
D | TODO.txt | 60 - The Line/Col in the status bar can be wrong initially in PyShell DONE 189 - When you're editing a command in PyShell, and there are only blank 198 it) in the PyShell. (Martijn Faassen) DONE
|
D | PyShell.py | 325 self.pyshell = PyShell(self) 858 class PyShell(OutputWindow): class 1311 return super(PyShell, self).rmenu_check_cut() 1316 return super(PyShell, self).rmenu_check_paste() 1519 PyShell.shell_title = a
|
D | idle.py | 12 from idlelib.PyShell import main # This is subject to change
|
D | PathBrowser.py | 7 from idlelib.PyShell import PyShellFileList
|
D | StackViewer.py | 9 from idlelib.PyShell import PyShellFileList
|
D | GrepDialog.py | 135 from idlelib.PyShell import PyShellFileList
|
/aosp_15_r20/external/python/cpython3/Lib/idlelib/ |
D | ChangeLog | 42 * PyShell.py, idle, idles: Implement idle command interface as 43 suggested by GvR [idle-dev] 16 July **************** PyShell: Added 87 * PyShell.py: Call out IDLE Fork in startup message. 91 * PyShell.py, setup.py: Add a script "idles" which opens a Python 149 * PyShell.py: py-cvs-2001_07_13 (Rev 1.34) merge 152 found a bug here. Here's the deal: Class PyShell derives from 153 class OutputWindow. Method PyShell.close() wants to invoke its 154 parent method, but because PyShell long ago was inherited from 210 PyShell.py, StackViewer.py, extend.txt, idle.py, keydefs.py: Import 247 * PyShell.py: cvs-py-rel2_1 (Rev 1.29 - 1.33) merge [all …]
|
D | README.txt | 185 View Last Restart # pyshell.PyShell.view_restart_mark 186 Restart Shell # pyshell.PyShell.restart_shell 189 Interrupt Execution # pyshell.PyShell.cancel_callback 193 debugger # debugger, debugger_r, PyShell.toggle_debugger 194 Stack Viewer # stackviewer, PyShell.open_stack_viewer 225 Defined in editor, PyShell.pyshell
|
D | TODO.txt | 60 - The Line/Col in the status bar can be wrong initially in PyShell DONE 189 - When you're editing a command in PyShell, and there are only blank 198 it) in the PyShell. (Martijn Faassen) DONE
|
D | config-main.def | 71 [PyShell]
|
D | pyshell.py | 333 self.pyshell = PyShell(self) 844 class PyShell(OutputWindow): class 1571 PyShell.shell_title = a
|
D | NEWS2x.txt | 8 - OutputWindow/PyShell right click menu "Go to file/line" wasn't working with 341 socket. Added Tk error dialogs to PyShell.py to announce a failure to bind
|
/aosp_15_r20/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_editmenu.py | 8 from idlelib import PyShell 22 PyShell.fix_x11_paste(root)
|
D | test_warning.py | 20 from idlelib import PyShell as shell
|
D | test_io.py | 3 from idlelib.PyShell import PseudoInputFile, PseudoOutputFile
|
/aosp_15_r20/external/python/cpython2/Tools/scripts/ |
D | idle | 3 from idlelib.PyShell import main
|
/aosp_15_r20/external/python/cpython2/Mac/IDLE/ |
D | idlemain.py | 71 from idlelib.PyShell import main
|
/aosp_15_r20/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_pyshell.py | 64 regexp = pyshell.PyShell._last_newline_re
|
D | test_sidebar.py | 17 from idlelib.pyshell import fix_x11_paste, PyShell, PyShellFileList 396 shell: PyShell = None
|
12