| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | #! /usr/bin/env python | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import sys | 
					
						
							|  |  |  | import string | 
					
						
							| 
									
										
										
										
											1998-10-16 16:12:11 +00:00
										 |  |  | import getopt | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2001-03-26 17:41:35 +00:00
										 |  |  | import warnings | 
					
						
							| 
									
										
										
										
											2002-08-05 14:55:21 +00:00
										 |  |  | import types | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | import linecache | 
					
						
							|  |  |  | from code import InteractiveInterpreter | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from Tkinter import * | 
					
						
							|  |  |  | import tkMessageBox | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | from EditorWindow import EditorWindow, fixwordbreaks | 
					
						
							|  |  |  | from FileList import FileList | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | from ColorDelegator import ColorDelegator | 
					
						
							| 
									
										
										
										
											2000-03-07 18:51:49 +00:00
										 |  |  | from UndoDelegator import UndoDelegator | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | from OutputWindow import OutputWindow | 
					
						
							| 
									
										
										
										
											2000-03-07 17:55:32 +00:00
										 |  |  | from IdleConf import idleconf | 
					
						
							| 
									
										
										
										
											1999-04-22 20:56:23 +00:00
										 |  |  | import idlever | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-19 02:26:16 +00:00
										 |  |  | # We need to patch linecache.checkcache, because we don't want it | 
					
						
							|  |  |  | # to throw away our <pyshell#...> entries. | 
					
						
							|  |  |  | # Rather than repeating its code here, we save those entries, | 
					
						
							|  |  |  | # then call the original function, and then restore the saved entries. | 
					
						
							|  |  |  | def linecache_checkcache(orig_checkcache=linecache.checkcache): | 
					
						
							|  |  |  |     cache = linecache.cache | 
					
						
							|  |  |  |     save = {} | 
					
						
							|  |  |  |     for filename in cache.keys(): | 
					
						
							|  |  |  |         if filename[:1] + filename[-1:] == '<>': | 
					
						
							|  |  |  |             save[filename] = cache[filename] | 
					
						
							|  |  |  |     orig_checkcache() | 
					
						
							|  |  |  |     cache.update(save) | 
					
						
							|  |  |  | linecache.checkcache = linecache_checkcache | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-07-20 18:58:42 +00:00
										 |  |  | IDENTCHARS = string.ascii_letters + string.digits + "_" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | # Note: <<newline-and-indent>> event is defined in AutoIndent.py | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #$ event <<plain-newline-and-indent>> | 
					
						
							|  |  |  | #$ win <Control-j> | 
					
						
							|  |  |  | #$ unix <Control-j> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #$ event <<beginning-of-line>> | 
					
						
							|  |  |  | #$ win <Control-a> | 
					
						
							|  |  |  | #$ win <Home> | 
					
						
							|  |  |  | #$ unix <Control-a> | 
					
						
							|  |  |  | #$ unix <Home> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #$ event <<history-next>> | 
					
						
							|  |  |  | #$ win <Alt-n> | 
					
						
							|  |  |  | #$ unix <Alt-n> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #$ event <<history-previous>> | 
					
						
							|  |  |  | #$ win <Alt-p> | 
					
						
							|  |  |  | #$ unix <Alt-p> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #$ event <<interrupt-execution>> | 
					
						
							|  |  |  | #$ win <Control-c> | 
					
						
							|  |  |  | #$ unix <Control-c> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #$ event <<end-of-file>> | 
					
						
							|  |  |  | #$ win <Control-d> | 
					
						
							|  |  |  | #$ unix <Control-d> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #$ event <<open-stack-viewer>> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #$ event <<toggle-debugger>> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PyShellEditorWindow(EditorWindow): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Regular text edit window when a shell is present | 
					
						
							|  |  |  |     # XXX ought to merge with regular editor window | 
					
						
							| 
									
										
										
										
											2002-05-21 17:00:20 +00:00
										 |  |  |     runnable = True  # Shell not present, enable Import Module and Run Script | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-19 02:26:16 +00:00
										 |  |  |     def __init__(self, *args): | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |         apply(EditorWindow.__init__, (self,) + args) | 
					
						
							|  |  |  |         self.text.bind("<<set-breakpoint-here>>", self.set_breakpoint_here) | 
					
						
							|  |  |  |         self.text.bind("<<open-python-shell>>", self.flist.open_shell) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     rmenu_specs = [ | 
					
						
							|  |  |  |         ("Set breakpoint here", "<<set-breakpoint-here>>"), | 
					
						
							|  |  |  |     ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def set_breakpoint_here(self, event=None): | 
					
						
							| 
									
										
										
										
											1998-10-19 02:26:16 +00:00
										 |  |  |         if not self.flist.pyshell or not self.flist.pyshell.interp.debugger: | 
					
						
							|  |  |  |             self.text.bell() | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         self.flist.pyshell.interp.debugger.set_breakpoint_here(self) | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PyShellFileList(FileList): | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # File list when a shell is present | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |     EditorWindow = PyShellEditorWindow | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |     pyshell = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |     def open_shell(self, event=None): | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |         if self.pyshell: | 
					
						
							|  |  |  |             self.pyshell.wakeup() | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.pyshell = PyShell(self) | 
					
						
							|  |  |  |             self.pyshell.begin() | 
					
						
							|  |  |  |         return self.pyshell | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | class ModifiedColorDelegator(ColorDelegator): | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |     # Colorizer for the shell window itself | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def recolorize_main(self): | 
					
						
							|  |  |  |         self.tag_remove("TODO", "1.0", "iomark") | 
					
						
							|  |  |  |         self.tag_add("SYNC", "1.0", "iomark") | 
					
						
							|  |  |  |         ColorDelegator.recolorize_main(self) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |     tagdefs = ColorDelegator.tagdefs.copy() | 
					
						
							| 
									
										
										
										
											2000-03-07 17:55:32 +00:00
										 |  |  |     cconf = idleconf.getsection('Colors') | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     tagdefs.update({ | 
					
						
							| 
									
										
										
										
											2000-03-03 23:06:45 +00:00
										 |  |  |         "stdin": cconf.getcolor("stdin"), | 
					
						
							|  |  |  |         "stdout": cconf.getcolor("stdout"), | 
					
						
							|  |  |  |         "stderr": cconf.getcolor("stderr"), | 
					
						
							|  |  |  |         "console": cconf.getcolor("console"), | 
					
						
							|  |  |  |         "ERROR": cconf.getcolor("ERROR"), | 
					
						
							| 
									
										
										
										
											2001-01-17 08:48:39 +00:00
										 |  |  |         None: cconf.getcolor("normal"), | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |     }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-07 18:51:49 +00:00
										 |  |  | class ModifiedUndoDelegator(UndoDelegator): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Forbid insert/delete before the I/O mark | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def insert(self, index, chars, tags=None): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             if self.delegate.compare(index, "<", "iomark"): | 
					
						
							|  |  |  |                 self.delegate.bell() | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  |         except TclError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         UndoDelegator.insert(self, index, chars, tags) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def delete(self, index1, index2=None): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             if self.delegate.compare(index1, "<", "iomark"): | 
					
						
							|  |  |  |                 self.delegate.bell() | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  |         except TclError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         UndoDelegator.delete(self, index1, index2) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | class ModifiedInterpreter(InteractiveInterpreter): | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |     def __init__(self, tkconsole): | 
					
						
							|  |  |  |         self.tkconsole = tkconsole | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         locals = sys.modules['__main__'].__dict__ | 
					
						
							|  |  |  |         InteractiveInterpreter.__init__(self, locals=locals) | 
					
						
							| 
									
										
										
										
											2001-03-29 03:34:43 +00:00
										 |  |  |         self.save_warnings_filters = None | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     gid = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |     def execsource(self, source): | 
					
						
							|  |  |  |         # Like runsource() but assumes complete exec source | 
					
						
							|  |  |  |         filename = self.stuffsource(source) | 
					
						
							|  |  |  |         self.execfile(filename, source) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def execfile(self, filename, source=None): | 
					
						
							|  |  |  |         # Execute an existing file | 
					
						
							|  |  |  |         if source is None: | 
					
						
							|  |  |  |             source = open(filename, "r").read() | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             code = compile(source, filename, "exec") | 
					
						
							|  |  |  |         except (OverflowError, SyntaxError): | 
					
						
							|  |  |  |             self.tkconsole.resetoutput() | 
					
						
							|  |  |  |             InteractiveInterpreter.showsyntaxerror(self, filename) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.runcode(code) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |     def runsource(self, source): | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         # Extend base class to stuff the source in the line cache first | 
					
						
							|  |  |  |         filename = self.stuffsource(source) | 
					
						
							|  |  |  |         self.more = 0 | 
					
						
							| 
									
										
										
										
											2001-03-26 17:41:35 +00:00
										 |  |  |         self.save_warnings_filters = warnings.filters[:] | 
					
						
							|  |  |  |         warnings.filterwarnings(action="error", category=SyntaxWarning) | 
					
						
							| 
									
										
										
										
											2002-08-05 14:55:21 +00:00
										 |  |  |         if isinstance(source, types.UnicodeType): | 
					
						
							|  |  |  |             import IOBinding | 
					
						
							|  |  |  |             source = source.encode(IOBinding.encoding) | 
					
						
							| 
									
										
										
										
											2001-03-26 17:41:35 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             return InteractiveInterpreter.runsource(self, source, filename) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             if self.save_warnings_filters is not None: | 
					
						
							|  |  |  |                 warnings.filters[:] = self.save_warnings_filters | 
					
						
							|  |  |  |                 self.save_warnings_filters = None | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def stuffsource(self, source): | 
					
						
							|  |  |  |         # Stuff source in the filename cache | 
					
						
							| 
									
										
										
										
											1998-10-19 02:26:16 +00:00
										 |  |  |         filename = "<pyshell#%d>" % self.gid | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         self.gid = self.gid + 1 | 
					
						
							|  |  |  |         lines = string.split(source, "\n") | 
					
						
							|  |  |  |         linecache.cache[filename] = len(source)+1, 0, lines, filename | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         return filename | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def showsyntaxerror(self, filename=None): | 
					
						
							|  |  |  |         # Extend base class to color the offending position | 
					
						
							|  |  |  |         # (instead of printing it and pointing at it with a caret) | 
					
						
							|  |  |  |         text = self.tkconsole.text | 
					
						
							|  |  |  |         stuff = self.unpackerror() | 
					
						
							|  |  |  |         if not stuff: | 
					
						
							|  |  |  |             self.tkconsole.resetoutput() | 
					
						
							|  |  |  |             InteractiveInterpreter.showsyntaxerror(self, filename) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         msg, lineno, offset, line = stuff | 
					
						
							|  |  |  |         if lineno == 1: | 
					
						
							|  |  |  |             pos = "iomark + %d chars" % (offset-1) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             pos = "iomark linestart + %d lines + %d chars" % (lineno-1, | 
					
						
							|  |  |  |                                                               offset-1) | 
					
						
							|  |  |  |         text.tag_add("ERROR", pos) | 
					
						
							|  |  |  |         text.see(pos) | 
					
						
							|  |  |  |         char = text.get(pos) | 
					
						
							| 
									
										
										
										
											2001-07-20 18:58:42 +00:00
										 |  |  |         if char and char in IDENTCHARS: | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |             text.tag_add("ERROR", pos + " wordstart", pos) | 
					
						
							|  |  |  |         self.tkconsole.resetoutput() | 
					
						
							|  |  |  |         self.write("SyntaxError: %s\n" % str(msg)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def unpackerror(self): | 
					
						
							|  |  |  |         type, value, tb = sys.exc_info() | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         ok = type is SyntaxError | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         if ok: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 msg, (dummy_filename, lineno, offset, line) = value | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 ok = 0 | 
					
						
							|  |  |  |         if ok: | 
					
						
							|  |  |  |             return msg, lineno, offset, line | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def showtraceback(self): | 
					
						
							|  |  |  |         # Extend base class method to reset output properly | 
					
						
							|  |  |  |         text = self.tkconsole.text | 
					
						
							|  |  |  |         self.tkconsole.resetoutput() | 
					
						
							| 
									
										
										
										
											1998-10-13 16:32:05 +00:00
										 |  |  |         self.checklinecache() | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         InteractiveInterpreter.showtraceback(self) | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-13 16:32:05 +00:00
										 |  |  |     def checklinecache(self): | 
					
						
							|  |  |  |         c = linecache.cache | 
					
						
							|  |  |  |         for key in c.keys(): | 
					
						
							|  |  |  |             if key[:1] + key[-1:] != "<>": | 
					
						
							|  |  |  |                 del c[key] | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-13 23:51:13 +00:00
										 |  |  |     debugger = None | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-13 23:51:13 +00:00
										 |  |  |     def setdebugger(self, debugger): | 
					
						
							|  |  |  |         self.debugger = debugger | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-13 23:51:13 +00:00
										 |  |  |     def getdebugger(self): | 
					
						
							|  |  |  |         return self.debugger | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |     def runcode(self, code): | 
					
						
							|  |  |  |         # Override base class method | 
					
						
							| 
									
										
										
										
											2001-03-26 17:41:35 +00:00
										 |  |  |         if self.save_warnings_filters is not None: | 
					
						
							|  |  |  |             warnings.filters[:] = self.save_warnings_filters | 
					
						
							|  |  |  |             self.save_warnings_filters = None | 
					
						
							| 
									
										
										
										
											1998-10-13 23:51:13 +00:00
										 |  |  |         debugger = self.debugger | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             self.tkconsole.beginexecuting() | 
					
						
							|  |  |  |             try: | 
					
						
							| 
									
										
										
										
											1998-10-13 23:51:13 +00:00
										 |  |  |                 if debugger: | 
					
						
							|  |  |  |                     debugger.run(code, self.locals) | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     exec code in self.locals | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |             except SystemExit: | 
					
						
							|  |  |  |                 if tkMessageBox.askyesno( | 
					
						
							|  |  |  |                     "Exit?", | 
					
						
							|  |  |  |                     "Do you want to exit altogether?", | 
					
						
							|  |  |  |                     default="yes", | 
					
						
							|  |  |  |                     master=self.tkconsole.text): | 
					
						
							|  |  |  |                     raise | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     self.showtraceback() | 
					
						
							| 
									
										
										
										
											1999-01-28 22:02:47 +00:00
										 |  |  |                     if self.tkconsole.getvar("<<toggle-jit-stack-viewer>>"): | 
					
						
							| 
									
										
										
										
											1999-01-08 15:31:07 +00:00
										 |  |  |                         self.tkconsole.open_stack_viewer() | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |             except: | 
					
						
							|  |  |  |                 self.showtraceback() | 
					
						
							| 
									
										
										
										
											1999-01-28 22:02:47 +00:00
										 |  |  |                 if self.tkconsole.getvar("<<toggle-jit-stack-viewer>>"): | 
					
						
							| 
									
										
										
										
											1999-01-08 15:31:07 +00:00
										 |  |  |                     self.tkconsole.open_stack_viewer() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             self.tkconsole.endexecuting() | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |     def write(self, s): | 
					
						
							|  |  |  |         # Override base class write | 
					
						
							|  |  |  |         self.tkconsole.console.write(s) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class PyShell(OutputWindow): | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |     shell_title = "Python Shell" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |     # Override classes | 
					
						
							|  |  |  |     ColorDelegator = ModifiedColorDelegator | 
					
						
							| 
									
										
										
										
											2000-03-07 18:51:49 +00:00
										 |  |  |     UndoDelegator = ModifiedUndoDelegator | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |     # Override menu bar specs | 
					
						
							|  |  |  |     menu_specs = PyShellEditorWindow.menu_specs[:] | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |     menu_specs.insert(len(menu_specs)-2, ("debug", "_Debug")) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-19 02:26:16 +00:00
										 |  |  |     # New classes | 
					
						
							| 
									
										
										
										
											1999-05-21 04:46:17 +00:00
										 |  |  |     from IdleHistory import History | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self, flist=None): | 
					
						
							|  |  |  |         self.interp = ModifiedInterpreter(self) | 
					
						
							|  |  |  |         if flist is None: | 
					
						
							|  |  |  |             root = Tk() | 
					
						
							|  |  |  |             fixwordbreaks(root) | 
					
						
							|  |  |  |             root.withdraw() | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |             flist = PyShellFileList(root) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |         OutputWindow.__init__(self, flist, None, None) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         import __builtin__ | 
					
						
							|  |  |  |         __builtin__.quit = __builtin__.exit = "To exit, type Ctrl-D." | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |         self.auto = self.extensions["AutoIndent"] # Required extension | 
					
						
							| 
									
										
											  
											
												Tim Peters again:
The new version (attached) is fast enough all the time in every real module
I have <whew!>.  You can make it slow by, e.g., creating an open list with
5,000 90-character identifiers (+ trailing comma) each on its own line, then
adding an item to the end -- but that still consumes less than a second on
my P5-166.  Response time in real code appears instantaneous.
Fixed some bugs.
New feature:  when hitting ENTER and the cursor is beyond the line's leading
indentation, whitespace is removed on both sides of the cursor; before
whitespace was removed only on the left; e.g., assuming the cursor is
between the comma and the space:
def something(arg1, arg2):
                   ^ cursor to the left of here, and hit ENTER
               arg2):   # new line used to end up here
              arg2):    # but now lines up the way you expect
New hack:  AutoIndent has grown a context_use_ps1 Boolean config option,
defaulting to 0 (false) and set to 1 (only) by PyShell.  Reason:  handling
the fancy stuff requires looking backward for a parsing synch point; ps1
lines are the only sensible thing to look for in a shell window, but are a
bad thing to look for in a file window (ps1 lines show up in my module
docstrings often).  PythonWin's shell should set this true too.
Persistent problem:  strings containing def/class can still screw things up
completely.  No improvement.  Simplest workaround is on the user's head, and
consists of inserting e.g.
def _(): pass
(or any other def/class) after the end of the multiline string that's
screwing them up.  This is especially irksome because IDLE's syntax coloring
is *not* confused, so when this happens the colors don't match the
indentation behavior they see.
											
										 
											1999-06-01 19:55:34 +00:00
										 |  |  |         self.auto.config(usetabs=1, indentwidth=8, context_use_ps1=1) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         text = self.text | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |         text.configure(wrap="char") | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         text.bind("<<newline-and-indent>>", self.enter_callback) | 
					
						
							|  |  |  |         text.bind("<<plain-newline-and-indent>>", self.linefeed_callback) | 
					
						
							|  |  |  |         text.bind("<<interrupt-execution>>", self.cancel_callback) | 
					
						
							|  |  |  |         text.bind("<<beginning-of-line>>", self.home_callback) | 
					
						
							|  |  |  |         text.bind("<<end-of-file>>", self.eof_callback) | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |         text.bind("<<open-stack-viewer>>", self.open_stack_viewer) | 
					
						
							| 
									
										
										
										
											1998-10-13 23:51:13 +00:00
										 |  |  |         text.bind("<<toggle-debugger>>", self.toggle_debugger) | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |         text.bind("<<open-python-shell>>", self.flist.open_shell) | 
					
						
							| 
									
										
										
										
											1999-01-08 15:31:07 +00:00
										 |  |  |         text.bind("<<toggle-jit-stack-viewer>>", self.toggle_jit_stack_viewer) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         self.save_stdout = sys.stdout | 
					
						
							|  |  |  |         self.save_stderr = sys.stderr | 
					
						
							|  |  |  |         self.save_stdin = sys.stdin | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         sys.stdout = PseudoFile(self, "stdout") | 
					
						
							| 
									
										
										
										
											1998-10-13 15:21:41 +00:00
										 |  |  |         sys.stderr = PseudoFile(self, "stderr") | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         sys.stdin = self | 
					
						
							|  |  |  |         self.console = PseudoFile(self, "console") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.history = self.History(self.text) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     reading = 0 | 
					
						
							|  |  |  |     executing = 0 | 
					
						
							|  |  |  |     canceled = 0 | 
					
						
							|  |  |  |     endoffile = 0 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-13 23:51:13 +00:00
										 |  |  |     def toggle_debugger(self, event=None): | 
					
						
							|  |  |  |         if self.executing: | 
					
						
							|  |  |  |             tkMessageBox.showerror("Don't debug now", | 
					
						
							|  |  |  |                 "You can only toggle the debugger when idle", | 
					
						
							|  |  |  |                 master=self.text) | 
					
						
							| 
									
										
										
										
											1999-01-28 22:02:47 +00:00
										 |  |  |             self.set_debugger_indicator() | 
					
						
							| 
									
										
										
										
											1998-10-13 23:51:13 +00:00
										 |  |  |             return "break" | 
					
						
							| 
									
										
										
										
											1998-10-14 03:43:05 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											1999-01-28 22:02:47 +00:00
										 |  |  |             db = self.interp.getdebugger() | 
					
						
							|  |  |  |             if db: | 
					
						
							|  |  |  |                 self.close_debugger() | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self.open_debugger() | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-28 22:02:47 +00:00
										 |  |  |     def set_debugger_indicator(self): | 
					
						
							|  |  |  |         db = self.interp.getdebugger() | 
					
						
							|  |  |  |         self.setvar("<<toggle-debugger>>", not not db) | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-08 15:31:07 +00:00
										 |  |  |     def toggle_jit_stack_viewer( self, event=None): | 
					
						
							| 
									
										
										
										
											1999-01-28 22:02:47 +00:00
										 |  |  |         pass # All we need is the variable | 
					
						
							| 
									
										
										
										
											1999-01-08 15:31:07 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-14 03:43:05 +00:00
										 |  |  |     def close_debugger(self): | 
					
						
							|  |  |  |         db = self.interp.getdebugger() | 
					
						
							|  |  |  |         if db: | 
					
						
							|  |  |  |             self.interp.setdebugger(None) | 
					
						
							| 
									
										
										
										
											1998-10-13 23:51:13 +00:00
										 |  |  |             db.close() | 
					
						
							|  |  |  |             self.resetoutput() | 
					
						
							|  |  |  |             self.console.write("[DEBUG OFF]\n") | 
					
						
							|  |  |  |             sys.ps1 = ">>> " | 
					
						
							|  |  |  |             self.showprompt() | 
					
						
							| 
									
										
										
										
											1999-01-28 22:02:47 +00:00
										 |  |  |         self.set_debugger_indicator() | 
					
						
							| 
									
										
										
										
											1998-10-14 03:43:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def open_debugger(self): | 
					
						
							|  |  |  |         import Debugger | 
					
						
							|  |  |  |         self.interp.setdebugger(Debugger.Debugger(self)) | 
					
						
							| 
									
										
										
										
											1998-10-16 21:09:35 +00:00
										 |  |  |         sys.ps1 = "[DEBUG ON]\n>>> " | 
					
						
							| 
									
										
										
										
											1998-10-14 03:43:05 +00:00
										 |  |  |         self.showprompt() | 
					
						
							| 
									
										
										
										
											1999-01-28 22:02:47 +00:00
										 |  |  |         self.set_debugger_indicator() | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def beginexecuting(self): | 
					
						
							|  |  |  |         # Helper for ModifiedInterpreter | 
					
						
							|  |  |  |         self.resetoutput() | 
					
						
							|  |  |  |         self.executing = 1 | 
					
						
							| 
									
										
										
										
											1999-06-25 16:09:27 +00:00
										 |  |  |         ##self._cancel_check = self.cancel_check | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         ##sys.settrace(self._cancel_check) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def endexecuting(self): | 
					
						
							|  |  |  |         # Helper for ModifiedInterpreter | 
					
						
							| 
									
										
										
										
											1999-06-25 16:09:27 +00:00
										 |  |  |         ##sys.settrace(None) | 
					
						
							|  |  |  |         ##self._cancel_check = None | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         self.executing = 0 | 
					
						
							|  |  |  |         self.canceled = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def close(self): | 
					
						
							|  |  |  |         # Extend base class method | 
					
						
							|  |  |  |         if self.executing: | 
					
						
							|  |  |  |             # XXX Need to ask a question here | 
					
						
							|  |  |  |             if not tkMessageBox.askokcancel( | 
					
						
							| 
									
										
										
										
											1999-01-28 22:02:47 +00:00
										 |  |  |                 "Kill?", | 
					
						
							|  |  |  |                 "The program is still running; do you want to kill it?", | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |                 default="ok", | 
					
						
							|  |  |  |                 master=self.text): | 
					
						
							|  |  |  |                 return "cancel" | 
					
						
							|  |  |  |             self.canceled = 1 | 
					
						
							|  |  |  |             if self.reading: | 
					
						
							|  |  |  |                 self.top.quit() | 
					
						
							|  |  |  |             return "cancel" | 
					
						
							| 
									
										
										
										
											2001-07-06 20:26:31 +00:00
										 |  |  |         return OutputWindow.close(self) | 
					
						
							| 
									
										
										
										
											1999-06-25 16:09:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _close(self): | 
					
						
							| 
									
										
										
										
											1999-06-25 17:26:34 +00:00
										 |  |  |         self.close_debugger() | 
					
						
							| 
									
										
										
										
											1999-06-25 16:09:27 +00:00
										 |  |  |         # Restore std streams | 
					
						
							|  |  |  |         sys.stdout = self.save_stdout | 
					
						
							|  |  |  |         sys.stderr = self.save_stderr | 
					
						
							|  |  |  |         sys.stdin = self.save_stdin | 
					
						
							|  |  |  |         # Break cycles | 
					
						
							|  |  |  |         self.interp = None | 
					
						
							|  |  |  |         self.console = None | 
					
						
							|  |  |  |         self.auto = None | 
					
						
							|  |  |  |         self.flist.pyshell = None | 
					
						
							|  |  |  |         self.history = None | 
					
						
							|  |  |  |         OutputWindow._close(self) # Really EditorWindow._close | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def ispythonsource(self, filename): | 
					
						
							|  |  |  |         # Override this so EditorWindow never removes the colorizer | 
					
						
							| 
									
										
										
										
											2002-04-04 22:55:58 +00:00
										 |  |  |         return True | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |     def short_title(self): | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         return self.shell_title | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-09-05 13:51:14 +00:00
										 |  |  |     COPYRIGHT = \ | 
					
						
							|  |  |  |               'Type "copyright", "credits" or "license" for more information.' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |     def begin(self): | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         self.resetoutput() | 
					
						
							| 
									
										
										
										
											1999-04-26 22:20:38 +00:00
										 |  |  |         self.write("Python %s on %s\n%s\nIDLE %s -- press F1 for help\n" % | 
					
						
							| 
									
										
										
										
											2000-09-05 13:51:14 +00:00
										 |  |  |                    (sys.version, sys.platform, self.COPYRIGHT, | 
					
						
							| 
									
										
										
										
											1999-04-22 20:56:23 +00:00
										 |  |  |                     idlever.IDLE_VERSION)) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             sys.ps1 | 
					
						
							|  |  |  |         except AttributeError: | 
					
						
							|  |  |  |             sys.ps1 = ">>> " | 
					
						
							|  |  |  |         self.showprompt() | 
					
						
							|  |  |  |         import Tkinter | 
					
						
							|  |  |  |         Tkinter._default_root = None | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |     def interact(self): | 
					
						
							|  |  |  |         self.begin() | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         self.top.mainloop() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def readline(self): | 
					
						
							|  |  |  |         save = self.reading | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             self.reading = 1 | 
					
						
							|  |  |  |             self.top.mainloop() | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             self.reading = save | 
					
						
							|  |  |  |         line = self.text.get("iomark", "end-1c") | 
					
						
							|  |  |  |         self.resetoutput() | 
					
						
							|  |  |  |         if self.canceled: | 
					
						
							|  |  |  |             self.canceled = 0 | 
					
						
							|  |  |  |             raise KeyboardInterrupt | 
					
						
							|  |  |  |         if self.endoffile: | 
					
						
							|  |  |  |             self.endoffile = 0 | 
					
						
							|  |  |  |             return "" | 
					
						
							|  |  |  |         return line | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-21 04:46:17 +00:00
										 |  |  |     def isatty(self): | 
					
						
							| 
									
										
										
										
											2002-04-04 22:55:58 +00:00
										 |  |  |         return True | 
					
						
							| 
									
										
										
										
											1999-05-21 04:46:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |     def cancel_callback(self, event): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             if self.text.compare("sel.first", "!=", "sel.last"): | 
					
						
							|  |  |  |                 return # Active selection -- always use default binding | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         if not (self.executing or self.reading): | 
					
						
							|  |  |  |             self.resetoutput() | 
					
						
							|  |  |  |             self.write("KeyboardInterrupt\n") | 
					
						
							|  |  |  |             self.showprompt() | 
					
						
							|  |  |  |             return "break" | 
					
						
							|  |  |  |         self.endoffile = 0 | 
					
						
							|  |  |  |         self.canceled = 1 | 
					
						
							|  |  |  |         if self.reading: | 
					
						
							|  |  |  |             self.top.quit() | 
					
						
							|  |  |  |         return "break" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def eof_callback(self, event): | 
					
						
							|  |  |  |         if self.executing and not self.reading: | 
					
						
							|  |  |  |             return # Let the default binding (delete next char) take over | 
					
						
							|  |  |  |         if not (self.text.compare("iomark", "==", "insert") and | 
					
						
							|  |  |  |                 self.text.compare("insert", "==", "end-1c")): | 
					
						
							|  |  |  |             return # Let the default binding (delete next char) take over | 
					
						
							|  |  |  |         if not self.executing: | 
					
						
							|  |  |  | ##             if not tkMessageBox.askokcancel( | 
					
						
							|  |  |  | ##                 "Exit?", | 
					
						
							|  |  |  | ##                 "Are you sure you want to exit?", | 
					
						
							|  |  |  | ##                 default="ok", master=self.text): | 
					
						
							|  |  |  | ##                 return "break" | 
					
						
							|  |  |  |             self.resetoutput() | 
					
						
							|  |  |  |             self.close() | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.canceled = 0 | 
					
						
							|  |  |  |             self.endoffile = 1 | 
					
						
							|  |  |  |             self.top.quit() | 
					
						
							|  |  |  |         return "break" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def home_callback(self, event): | 
					
						
							|  |  |  |         if event.state != 0 and event.keysym == "Home": | 
					
						
							|  |  |  |             return # <Modifier-Home>; fall back to class binding | 
					
						
							|  |  |  |         if self.text.compare("iomark", "<=", "insert") and \ | 
					
						
							|  |  |  |            self.text.compare("insert linestart", "<=", "iomark"): | 
					
						
							|  |  |  |             self.text.mark_set("insert", "iomark") | 
					
						
							|  |  |  |             self.text.tag_remove("sel", "1.0", "end") | 
					
						
							|  |  |  |             self.text.see("insert") | 
					
						
							|  |  |  |             return "break" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def linefeed_callback(self, event): | 
					
						
							|  |  |  |         # Insert a linefeed without entering anything (still autoindented) | 
					
						
							|  |  |  |         if self.reading: | 
					
						
							|  |  |  |             self.text.insert("insert", "\n") | 
					
						
							|  |  |  |             self.text.see("insert") | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |             self.auto.auto_indent(event) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         return "break" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def enter_callback(self, event): | 
					
						
							|  |  |  |         if self.executing and not self.reading: | 
					
						
							|  |  |  |             return # Let the default binding (insert '\n') take over | 
					
						
							|  |  |  |         # If some text is selected, recall the selection | 
					
						
							| 
									
										
										
										
											1998-10-13 14:41:27 +00:00
										 |  |  |         # (but only if this before the I/O mark) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             sel = self.text.get("sel.first", "sel.last") | 
					
						
							|  |  |  |             if sel: | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |                 if self.text.compare("sel.last", "<=", "iomark"): | 
					
						
							| 
									
										
										
										
											1998-10-13 14:41:27 +00:00
										 |  |  |                     self.recall(sel) | 
					
						
							|  |  |  |                     return "break" | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         except: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |         # If we're strictly before the line containing iomark, recall | 
					
						
							|  |  |  |         # the current line, less a leading prompt, less leading or | 
					
						
							|  |  |  |         # trailing whitespace | 
					
						
							|  |  |  |         if self.text.compare("insert", "<", "iomark linestart"): | 
					
						
							| 
									
										
										
										
											1998-10-13 14:41:27 +00:00
										 |  |  |             # Check if there's a relevant stdin range -- if so, use it | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |             prev = self.text.tag_prevrange("stdin", "insert") | 
					
						
							|  |  |  |             if prev and self.text.compare("insert", "<", prev[1]): | 
					
						
							|  |  |  |                 self.recall(self.text.get(prev[0], prev[1])) | 
					
						
							|  |  |  |                 return "break" | 
					
						
							|  |  |  |             next = self.text.tag_nextrange("stdin", "insert") | 
					
						
							|  |  |  |             if next and self.text.compare("insert lineend", ">=", next[0]): | 
					
						
							|  |  |  |                 self.recall(self.text.get(next[0], next[1])) | 
					
						
							|  |  |  |                 return "break" | 
					
						
							|  |  |  |             # No stdin mark -- just get the current line | 
					
						
							|  |  |  |             self.recall(self.text.get("insert linestart", "insert lineend")) | 
					
						
							|  |  |  |             return "break" | 
					
						
							| 
									
										
										
										
											2000-03-07 15:05:50 +00:00
										 |  |  |         # If we're in the current input and there's only whitespace | 
					
						
							|  |  |  |         # beyond the cursor, erase that whitespace first | 
					
						
							|  |  |  |         s = self.text.get("insert", "end-1c") | 
					
						
							|  |  |  |         if s and not string.strip(s): | 
					
						
							|  |  |  |             self.text.delete("insert", "end-1c") | 
					
						
							| 
									
										
										
										
											1998-10-13 14:41:27 +00:00
										 |  |  |         # If we're in the current input before its last line, | 
					
						
							|  |  |  |         # insert a newline right at the insert point | 
					
						
							|  |  |  |         if self.text.compare("insert", "<", "end-1c linestart"): | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |             self.auto.auto_indent(event) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |             return "break" | 
					
						
							| 
									
										
										
										
											1998-10-13 14:41:27 +00:00
										 |  |  |         # We're in the last line; append a newline and submit it | 
					
						
							|  |  |  |         self.text.mark_set("insert", "end-1c") | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         if self.reading: | 
					
						
							|  |  |  |             self.text.insert("insert", "\n") | 
					
						
							|  |  |  |             self.text.see("insert") | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |             self.auto.auto_indent(event) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         self.text.tag_add("stdin", "iomark", "end-1c") | 
					
						
							|  |  |  |         self.text.update_idletasks() | 
					
						
							|  |  |  |         if self.reading: | 
					
						
							|  |  |  |             self.top.quit() # Break out of recursive mainloop() in raw_input() | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.runit() | 
					
						
							|  |  |  |         return "break" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def recall(self, s): | 
					
						
							|  |  |  |         if self.history: | 
					
						
							|  |  |  |             self.history.recall(s) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def runit(self): | 
					
						
							|  |  |  |         line = self.text.get("iomark", "end-1c") | 
					
						
							|  |  |  |         # Strip off last newline and surrounding whitespace. | 
					
						
							|  |  |  |         # (To allow you to hit return twice to end a statement.) | 
					
						
							|  |  |  |         i = len(line) | 
					
						
							|  |  |  |         while i > 0 and line[i-1] in " \t": | 
					
						
							|  |  |  |             i = i-1 | 
					
						
							|  |  |  |         if i > 0 and line[i-1] == "\n": | 
					
						
							|  |  |  |             i = i-1 | 
					
						
							|  |  |  |         while i > 0 and line[i-1] in " \t": | 
					
						
							|  |  |  |             i = i-1 | 
					
						
							|  |  |  |         line = line[:i] | 
					
						
							|  |  |  |         more = self.interp.runsource(line) | 
					
						
							|  |  |  |         if not more: | 
					
						
							|  |  |  |             self.showprompt() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def cancel_check(self, frame, what, args, | 
					
						
							|  |  |  |                      dooneevent=tkinter.dooneevent, | 
					
						
							|  |  |  |                      dontwait=tkinter.DONT_WAIT): | 
					
						
							|  |  |  |         # Hack -- use the debugger hooks to be able to handle events | 
					
						
							|  |  |  |         # and interrupt execution at any time. | 
					
						
							|  |  |  |         # This slows execution down quite a bit, so you may want to | 
					
						
							|  |  |  |         # disable this (by not calling settrace() in runcode() above) | 
					
						
							|  |  |  |         # for full-bore (uninterruptable) speed. | 
					
						
							|  |  |  |         # XXX This should become a user option. | 
					
						
							|  |  |  |         if self.canceled: | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         dooneevent(dontwait) | 
					
						
							|  |  |  |         if self.canceled: | 
					
						
							|  |  |  |             self.canceled = 0 | 
					
						
							|  |  |  |             raise KeyboardInterrupt | 
					
						
							|  |  |  |         return self._cancel_check | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |     def open_stack_viewer(self, event=None): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             sys.last_traceback | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             tkMessageBox.showerror("No stack trace", | 
					
						
							|  |  |  |                 "There is no stack trace yet.\n" | 
					
						
							|  |  |  |                 "(sys.last_traceback is not defined)", | 
					
						
							|  |  |  |                 master=self.text) | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											1998-10-16 16:12:11 +00:00
										 |  |  |         from StackViewer import StackBrowser | 
					
						
							|  |  |  |         sv = StackBrowser(self.root, self.flist) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def showprompt(self): | 
					
						
							|  |  |  |         self.resetoutput() | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             s = str(sys.ps1) | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             s = "" | 
					
						
							|  |  |  |         self.console.write(s) | 
					
						
							|  |  |  |         self.text.mark_set("insert", "end-1c") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def resetoutput(self): | 
					
						
							|  |  |  |         source = self.text.get("iomark", "end-1c") | 
					
						
							|  |  |  |         if self.history: | 
					
						
							|  |  |  |             self.history.history_store(source) | 
					
						
							|  |  |  |         if self.text.get("end-2c") != "\n": | 
					
						
							|  |  |  |             self.text.insert("end-1c", "\n") | 
					
						
							|  |  |  |         self.text.mark_set("iomark", "end-1c") | 
					
						
							|  |  |  |         sys.stdout.softspace = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |     def write(self, s, tags=()): | 
					
						
							|  |  |  |         self.text.mark_gravity("iomark", "right") | 
					
						
							|  |  |  |         OutputWindow.write(self, s, tags, "iomark") | 
					
						
							|  |  |  |         self.text.mark_gravity("iomark", "left") | 
					
						
							|  |  |  |         if self.canceled: | 
					
						
							|  |  |  |             self.canceled = 0 | 
					
						
							|  |  |  |             raise KeyboardInterrupt | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class PseudoFile: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |     def __init__(self, shell, tags): | 
					
						
							|  |  |  |         self.shell = shell | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |         self.tags = tags | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def write(self, s): | 
					
						
							| 
									
										
										
										
											1999-01-02 21:28:54 +00:00
										 |  |  |         self.shell.write(s, self.tags) | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def writelines(self, l): | 
					
						
							|  |  |  |         map(self.write, l) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-03-29 14:52:28 +00:00
										 |  |  |     def flush(self): | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-05-21 04:46:17 +00:00
										 |  |  |     def isatty(self): | 
					
						
							| 
									
										
										
										
											2002-04-04 22:55:58 +00:00
										 |  |  |         return True | 
					
						
							| 
									
										
										
										
											1999-05-21 04:46:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  | usage_msg = """\
 | 
					
						
							|  |  |  | usage: idle.py [-c command] [-d] [-e] [-s] [-t title] [arg] ... | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | -c command  run this command | 
					
						
							|  |  |  | -d          enable debugger | 
					
						
							|  |  |  | -e          edit mode; arguments are files to be edited | 
					
						
							| 
									
										
										
										
											1999-04-22 20:56:23 +00:00
										 |  |  | -s          run $IDLESTARTUP or $PYTHONSTARTUP before anything else | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  | -t title    set title of shell window | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | When neither -c nor -e is used, and there are arguments, and the first | 
					
						
							|  |  |  | argument is not '-', the first argument is run as a script.  Remaining | 
					
						
							|  |  |  | arguments are arguments to the script or to the command run by -c. | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | def main(): | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |     cmd = None | 
					
						
							|  |  |  |     edit = 0 | 
					
						
							| 
									
										
										
										
											1998-10-16 16:12:11 +00:00
										 |  |  |     debug = 0 | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |     startup = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-16 16:12:11 +00:00
										 |  |  |     try: | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         opts, args = getopt.getopt(sys.argv[1:], "c:deist:") | 
					
						
							| 
									
										
										
										
											1998-10-16 16:12:11 +00:00
										 |  |  |     except getopt.error, msg: | 
					
						
							|  |  |  |         sys.stderr.write("Error: %s\n" % str(msg)) | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         sys.stderr.write(usage_msg) | 
					
						
							| 
									
										
										
										
											1998-10-16 16:12:11 +00:00
										 |  |  |         sys.exit(2) | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-16 16:12:11 +00:00
										 |  |  |     for o, a in opts: | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         if o == '-c': | 
					
						
							|  |  |  |             cmd = a | 
					
						
							|  |  |  |         if o == '-d': | 
					
						
							| 
									
										
										
										
											1998-10-16 16:12:11 +00:00
										 |  |  |             debug = 1 | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         if o == '-e': | 
					
						
							|  |  |  |             edit = 1 | 
					
						
							|  |  |  |         if o == '-s': | 
					
						
							|  |  |  |             startup = 1 | 
					
						
							|  |  |  |         if o == '-t': | 
					
						
							|  |  |  |             PyShell.shell_title = a | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for i in range(len(sys.path)): | 
					
						
							|  |  |  |         sys.path[i] = os.path.abspath(sys.path[i]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pathx = [] | 
					
						
							|  |  |  |     if edit: | 
					
						
							|  |  |  |         for filename in args: | 
					
						
							|  |  |  |             pathx.append(os.path.dirname(filename)) | 
					
						
							|  |  |  |     elif args and args[0] != "-": | 
					
						
							|  |  |  |         pathx.append(os.path.dirname(args[0])) | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         pathx.append(os.curdir) | 
					
						
							|  |  |  |     for dir in pathx: | 
					
						
							|  |  |  |         dir = os.path.abspath(dir) | 
					
						
							|  |  |  |         if not dir in sys.path: | 
					
						
							|  |  |  |             sys.path.insert(0, dir) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |     global flist, root | 
					
						
							| 
									
										
										
										
											2000-09-15 04:32:56 +00:00
										 |  |  |     root = Tk(className="Idle") | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |     fixwordbreaks(root) | 
					
						
							|  |  |  |     root.withdraw() | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |     flist = PyShellFileList(root) | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if edit: | 
					
						
							|  |  |  |         for filename in args: | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  |             flist.open(filename) | 
					
						
							| 
									
										
										
										
											2000-09-15 04:32:56 +00:00
										 |  |  |     else: | 
					
						
							|  |  |  |         if cmd: | 
					
						
							|  |  |  |             sys.argv = ["-c"] + args | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             sys.argv = args or [""] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     shell = PyShell(flist) | 
					
						
							|  |  |  |     interp = shell.interp | 
					
						
							|  |  |  |     flist.pyshell = shell | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if startup: | 
					
						
							|  |  |  |         filename = os.environ.get("IDLESTARTUP") or \ | 
					
						
							|  |  |  |                    os.environ.get("PYTHONSTARTUP") | 
					
						
							|  |  |  |         if filename and os.path.isfile(filename): | 
					
						
							|  |  |  |             interp.execfile(filename) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-16 16:12:11 +00:00
										 |  |  |     if debug: | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  |         shell.open_debugger() | 
					
						
							|  |  |  |     if cmd: | 
					
						
							|  |  |  |         interp.execsource(cmd) | 
					
						
							|  |  |  |     elif not edit and args and args[0] != "-": | 
					
						
							|  |  |  |         interp.execfile(args[0]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     shell.begin() | 
					
						
							| 
									
										
										
										
											1998-10-12 23:59:27 +00:00
										 |  |  |     root.mainloop() | 
					
						
							| 
									
										
										
										
											1999-06-25 16:09:27 +00:00
										 |  |  |     root.destroy() | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-04-22 20:49:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-10-10 18:48:31 +00:00
										 |  |  | if __name__ == "__main__": | 
					
						
							|  |  |  |     main() |