✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ beluga.o2switch.net ​🇻​♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.77
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/python310/lib64/python3.10/idlelib//runscript.py
"""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,)


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
3 Sep 2026 4.09 AM
root / linksafe
0755
Icons
--
3 Sep 2026 4.11 AM
root / linksafe
0755
__pycache__
--
3 Sep 2026 4.11 AM
root / linksafe
0755
idle_test
--
3 Sep 2026 4.11 AM
root / linksafe
0755
CREDITS.txt
2.102 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
ChangeLog
55.039 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
HISTORY.txt
10.07 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
NEWS.txt
52.925 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
NEWS2x.txt
26.535 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
README.txt
11.38 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
TODO.txt
8.279 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
__init__.py
0.387 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
__main__.py
0.155 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
autocomplete.py
9.135 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
autocomplete_w.py
20.603 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
autoexpand.py
3.141 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
browser.py
8.385 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
calltip.py
7.097 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
calltip_w.py
6.99 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
codecontext.py
11.152 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
colorizer.py
14.427 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
config-extensions.def
2.213 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
config-highlight.def
2.797 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
config-keys.def
10.654 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
config-main.def
3.094 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
config.py
37.279 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
config_key.py
14.873 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
configdialog.py
103.25 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
debugger.py
18.656 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
debugger_r.py
11.882 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
debugobj.py
3.96 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
debugobj_r.py
1.057 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
delegator.py
1.019 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
dynoption.py
1.944 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
editor.py
64.829 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
extend.txt
3.546 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
filelist.py
3.785 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
format.py
15.407 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
grep.py
7.304 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
help.html
77.271 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
help.py
11.577 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
help_about.py
8.893 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
history.py
3.969 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
hyperparser.py
12.587 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
idle.py
0.443 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
idle.pyw
0.557 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
iomenu.py
15.597 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
macosx.py
9.912 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
mainmenu.py
3.846 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
multicall.py
18.211 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
outwin.py
5.575 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
parenmatch.py
7.035 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
pathbrowser.py
3.118 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
percolator.py
3.463 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
pyparse.py
19.398 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
pyshell.py
61.508 KB
12 Aug 2026 11.03 PM
root / linksafe
0755
query.py
14.722 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
redirector.py
6.714 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
replace.py
9.765 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
rpc.py
20.588 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
run.py
21 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
runscript.py
8.079 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
scrolledlist.py
4.36 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
search.py
5.436 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
searchbase.py
7.672 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
searchengine.py
7.192 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
sidebar.py
19.88 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
squeezer.py
12.533 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
stackviewer.py
4.35 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
statusbar.py
1.438 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
textview.py
6.653 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
tooltip.py
6.403 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
tree.py
15.986 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
undo.py
10.787 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
util.py
0.685 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
window.py
2.555 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
zoomheight.py
4.104 KB
12 Aug 2026 11.03 PM
root / linksafe
0644
zzdummy.py
1.958 KB
12 Aug 2026 11.03 PM
root / linksafe
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF