/
opt
/
imh
/
python3.13
/
lib
/
python3.13
/
idlelib
/
/opt/imh/python3.13/lib/python3.13/idlelib
mkdir
upload
Name
Size
Mode
Actions
Icons/
-
0755
rm
__pycache__/
-
0755
rm
autocomplete.py
9354
0644
edit
dl
rm
autocomplete_w.py
20863
0644
edit
dl
rm
autoexpand.py
3216
0644
edit
dl
rm
browser.py
8588
0644
edit
dl
rm
calltip.py
7267
0644
edit
dl
rm
calltip_w.py
7083
0644
edit
dl
rm
ChangeLog
56360
0644
edit
dl
rm
codecontext.py
11420
0644
edit
dl
rm
colorizer.py
14783
0644
edit
dl
rm
config-extensions.def
2266
0644
edit
dl
rm
config-highlight.def
2864
0644
edit
dl
rm
config-keys.def
10910
0644
edit
dl
rm
config-main.def
3168
0644
edit
dl
rm
config.py
38403
0644
edit
dl
rm
configdialog.py
105303
0644
edit
dl
rm
config_key.py
15230
0644
edit
dl
rm
CREDITS.txt
2148
0644
edit
dl
rm
debugger.py
20997
0644
edit
dl
rm
debugger_r.py
12115
0644
edit
dl
rm
debugobj.py
4177
0644
edit
dl
rm
debugobj_r.py
1082
0644
edit
dl
rm
delegator.py
1044
0644
edit
dl
rm
dynoption.py
1993
0644
edit
dl
rm
editor.py
69557
0644
edit
dl
rm
extend.txt
3632
0644
edit
dl
rm
filelist.py
3871
0644
edit
dl
rm
format.py
15777
0644
edit
dl
rm
grep.py
7521
0644
edit
dl
rm
help.html
60566
0644
edit
dl
rm
help.py
11843
0644
edit
dl
rm
help_about.py
9023
0644
edit
dl
rm
history.py
4065
0644
edit
dl
rm
HISTORY.txt
10313
0644
edit
dl
rm
hyperparser.py
12889
0644
edit
dl
rm
idle.bat
177
0644
edit
dl
rm
idle.py
454
0644
edit
dl
rm
idle.pyw
570
0644
edit
dl
rm
iomenu.py
16159
0644
edit
dl
rm
macosx.py
9290
0644
edit
dl
rm
mainmenu.py
3938
0644
edit
dl
rm
multicall.py
18652
0644
edit
dl
rm
NEWS2x.txt
27172
0644
edit
dl
rm
News3.txt
56818
0644
edit
dl
rm
outwin.py
5705
0644
edit
dl
rm
parenmatch.py
7204
0644
edit
dl
rm
pathbrowser.py
3093
0644
edit
dl
rm
percolator.py
3568
0644
edit
dl
rm
pyparse.py
19864
0644
edit
dl
rm
pyshell.py
62484
0755
edit
dl
rm
query.py
15067
0644
edit
dl
rm
README.txt
11653
0644
edit
dl
rm
redirector.py
6832
0644
edit
dl
rm
replace.py
9798
0644
edit
dl
rm
rpc.py
21078
0644
edit
dl
rm
run.py
21877
0644
edit
dl
rm
runscript.py
8273
0644
edit
dl
rm
scrolledlist.py
4478
0644
edit
dl
rm
search.py
5567
0644
edit
dl
rm
searchbase.py
7852
0644
edit
dl
rm
searchengine.py
7372
0644
edit
dl
rm
sidebar.py
20327
0644
edit
dl
rm
squeezer.py
12834
0644
edit
dl
rm
stackviewer.py
4016
0644
edit
dl
rm
statusbar.py
1474
0644
edit
dl
rm
textview.py
6808
0644
edit
dl
rm
TODO.txt
8477
0644
edit
dl
rm
tooltip.py
6665
0644
edit
dl
rm
tree.py
16773
0644
edit
dl
rm
undo.py
11016
0644
edit
dl
rm
util.py
1312
0644
edit
dl
rm
window.py
2616
0644
edit
dl
rm
zoomheight.py
4203
0644
edit
dl
rm
zzdummy.py
2005
0644
edit
dl
rm
__init__.py
396
0644
edit
dl
rm
__main__.py
107
0644
edit
dl
rm
Edit:
/opt/imh/python3.13/lib/python3.13/idlelib/runscript.py
(8273B)
"""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 to sys.modules, and is also added to the __main__ namespace. TODO: Specify command line arguments in a dialog box. """ import os import tabnanny import time import tokenize from tkinter import messagebox from idlelib.config import idleConf from idlelib import macosx from idlelib import pyshell from idlelib.query import CustomRun from idlelib import outwin indent_message = """Error: Inconsistent indentation detected! 1) Your indentation is outright incorrect (easy to fix), OR 2) 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 differently self.flist = self.editwin.flist self.root = self.editwin.root # cli_args is list of strings that extends sys.argv self.cli_args = [] self.perf = 0.0 # Workaround for macOS 11 Uni2; see bpo-42508. 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 well with tokenize.open(filename) as f: try: tabnanny.process_tokens(tokenize.generate_tokens(f.readline)) except tokenize.TokenError as msg: msgtxt, (lineno, start) = msg.args self.editwin.gotoline(lineno) self.errorbox("Tabnanny Tokenizing Error", "Token Error: %s" % msgtxt) return False except 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 False return True def 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.editwin text = editwin.text text.tag_remove("ERROR", "1.0", "end") try: # If successful, return the compiled code return 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 1 offset = getattr(value, 'offset', '') or 0 if offset == 0: lineno += 1 #mark end of offending line pos = "0.0 + %d lines + %d chars" % (lineno-1, offset-1) editwin.colorize_syntax_error(text, pos) self.errorbox("SyntaxError", "%-20s" % msg) return False finally: shell.set_warning_stream(saved_stream) 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, make sure the shell is active and then transfer the arguments, set the run environment's working directory to the directory of the module being executed and also add that directory to its sys.path if not already included. """ if macosx.isCocoaTk() and (time.perf_counter() - self.perf < .05): return 'break' 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).result if not run_args: # User cancelled. return 'break' self.cli_args, restart = run_args if customize else ([], True) interp = self.shell.interp if 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_args interp.runcommand(f"""if 1: __file__ = {filename!r} import sys as _sys from os.path import basename as _basename argv = {argv!r} if (not _sys.argv or _basename(_sys.argv[0]) != _basename(__file__) or len(argv) > 1): _sys.argv = argv import 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) file The debugger requires a source file. Make sure there is one, and that the current version of the source buffer has been saved. If the user declines to save or cancels the Save As dialog, return None. If the user has configured IDLE for Autosave, the file will be silently saved if it already exists and is dirty. """ filename = self.editwin.io.filename if 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.filename else: filename = None return filename def ask_save_dialog(self): msg = "Source Must Be Saved\n" + 5*' ' + "OK to Save?" confirm = messagebox.askokcancel(title="Save Before Run or Check", message=msg, default=messagebox.OK, parent=self.editwin.text) return confirm def errorbox(self, title, message): # XXX This should really be a function of EditorWindow... messagebox.showerror(title, message, parent=self.editwin.text) self.editwin.text.focus_set() self.perf = time.perf_counter() if __name__ == "__main__": from unittest import main main('idlelib.idle_test.test_runscript', verbosity=2,)
Save
cmd:
run