"""Execute code from an editor.Check module: do a full syntax check of the current module.Also run the tabnanny to catch any inconsistent tabs.Run module: also execute the module's code in the __main__ namespace.The window must have been saved previously. The module is added tosys.modules, and is also added to the __main__ namespace.TODO: Specify command line arguments in a dialog box."""import osimport tabnannyimport tokenizeimport tkinter.messagebox as tkMessageBoxfrom idlelib.config import idleConffrom idlelib import macosxfrom idlelib import pyshellfrom idlelib.query import CustomRunfrom idlelib import outwinindent_message = """Error: Inconsistent indentation detected!1) Your indentation is outright incorrect (easy to fix), OR2) Your indentation mixes tabs and spaces.To fix case 2, change all tabs to spaces by using Edit->Select All followed \by Format->Untabify Region and specify the number of columns used by each tab."""class ScriptBinding:def __init__(self, editwin):self.editwin = editwin# Provide instance variables referenced by debugger# XXX This should be done differentlyself.flist = self.editwin.flistself.root = self.editwin.root# cli_args is list of strings that extends sys.argvself.cli_args = []if macosx.isCocoaTk():self.editwin.text_frame.bind('<<run-module-event-2>>', self._run_module_event)def check_module_event(self, event):if isinstance(self.editwin, outwin.OutputWindow):self.editwin.text.bell()return 'break'filename = self.getfilename()if not filename:return 'break'if not self.checksyntax(filename):return 'break'if not self.tabnanny(filename):return 'break'return "break"def tabnanny(self, filename):# XXX: tabnanny should work on binary files as wellwith tokenize.open(filename) as f:try:tabnanny.process_tokens(tokenize.generate_tokens(f.readline))except tokenize.TokenError as msg:msgtxt, (lineno, start) = msg.argsself.editwin.gotoline(lineno)self.errorbox("Tabnanny Tokenizing Error","Token Error: %s" % msgtxt)return Falseexcept tabnanny.NannyNag as nag:# The error messages from tabnanny are too confusing...self.editwin.gotoline(nag.get_lineno())self.errorbox("Tab/space error", indent_message)return Falsereturn Truedef checksyntax(self, filename):self.shell = shell = self.flist.open_shell()saved_stream = shell.get_warning_stream()shell.set_warning_stream(shell.stderr)with open(filename, 'rb') as f:source = f.read()if b'\r' in source:source = source.replace(b'\r\n', b'\n')source = source.replace(b'\r', b'\n')if source and source[-1] != ord(b'\n'):source = source + b'\n'editwin = self.editwintext = editwin.texttext.tag_remove("ERROR", "1.0", "end")try:# If successful, return the compiled codereturn compile(source, filename, "exec")except (SyntaxError, OverflowError, ValueError) as value:msg = getattr(value, 'msg', '') or value or "<no detail available>"lineno = getattr(value, 'lineno', '') or 1offset = getattr(value, 'offset', '') or 0if offset == 0:lineno += 1 #mark end of offending linepos = "0.0 + %d lines + %d chars" % (lineno-1, offset-1)editwin.colorize_syntax_error(text, pos)self.errorbox("SyntaxError", "%-20s" % msg)return Falsefinally:shell.set_warning_stream(saved_stream)def run_module_event(self, event):if macosx.isCocoaTk():# Tk-Cocoa in MacOSX is broken until at least# Tk 8.5.9, and without this rather# crude workaround IDLE would hang when a user# tries to run a module using the keyboard shortcut# (the menu item works fine).self.editwin.text_frame.after(200,lambda: self.editwin.text_frame.event_generate('<<run-module-event-2>>'))return 'break'else:return self._run_module_event(event)def run_custom_event(self, event):return self._run_module_event(event, customize=True)def _run_module_event(self, event, *, customize=False):"""Run the module after setting up the environment.First check the syntax. Next get customization. If OK, makesure the shell is active and then transfer the arguments, setthe run environment's working directory to the directory of themodule being executed and also add that directory to itssys.path if not already included."""if isinstance(self.editwin, outwin.OutputWindow):self.editwin.text.bell()return 'break'filename = self.getfilename()if not filename:return 'break'code = self.checksyntax(filename)if not code:return 'break'if not self.tabnanny(filename):return 'break'if customize:title = f"Customize {self.editwin.short_title()} Run"run_args = CustomRun(self.shell.text, title,cli_args=self.cli_args).resultif not run_args: # User cancelled.return 'break'self.cli_args, restart = run_args if customize else ([], True)interp = self.shell.interpif pyshell.use_subprocess and restart:interp.restart_subprocess(with_cwd=False, filename=filename)dirname = os.path.dirname(filename)argv = [filename]if self.cli_args:argv += self.cli_argsinterp.runcommand(f"""if 1:__file__ = {filename!r}import sys as _sysfrom os.path import basename as _basenameargv = {argv!r}if (not _sys.argv or_basename(_sys.argv[0]) != _basename(__file__) orlen(argv) > 1):_sys.argv = argvimport os as _os_os.chdir({dirname!r})del _sys, argv, _basename, _os\n""")interp.prepend_syspath(filename)# XXX KBK 03Jul04 When run w/o subprocess, runtime warnings still# go to __stderr__. With subprocess, they go to the shell.# Need to change streams in pyshell.ModifiedInterpreter.interp.runcode(code)return 'break'def getfilename(self):"""Get source filename. If not saved, offer to save (or create) fileThe debugger requires a source file. Make sure there is one, and thatthe current version of the source buffer has been saved. If the userdeclines to save or cancels the Save As dialog, return None.If the user has configured IDLE for Autosave, the file will besilently saved if it already exists and is dirty."""filename = self.editwin.io.filenameif not self.editwin.get_saved():autosave = idleConf.GetOption('main', 'General','autosave', type='bool')if autosave and filename:self.editwin.io.save(None)else:confirm = self.ask_save_dialog()self.editwin.text.focus_set()if confirm:self.editwin.io.save(None)filename = self.editwin.io.filenameelse:filename = Nonereturn filenamedef ask_save_dialog(self):msg = "Source Must Be Saved\n" + 5*' ' + "OK to Save?"confirm = tkMessageBox.askokcancel(title="Save Before Run or Check",message=msg,default=tkMessageBox.OK,parent=self.editwin.text)return confirmdef errorbox(self, title, message):# XXX This should really be a function of EditorWindow...tkMessageBox.showerror(title, message, parent=self.editwin.text)self.editwin.text.focus_set()if __name__ == "__main__":from unittest import mainmain('idlelib.idle_test.test_runscript', verbosity=2,)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。