$64 GRAYBYTE WORDPRESS FILE MANAGER $51

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 104.21.43.35 | ADMIN IP 216.73.216.180
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : mail

/opt/alt/python35/lib64/python3.5/idlelib/

HOME
Current File : /opt/alt/python35/lib64/python3.5/idlelib//ScriptBinding.py
"""Extension to execute code outside the Python shell window.

This adds the following commands:

- Check module does a full syntax check of the current module.
  It also runs the tabnanny to catch any inconsistent tabs.

- Run module executes 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.

XXX GvR Redesign this interface (yet again) as follows:

- Present a dialog box for ``Run Module''

- Allow specify command line arguments in the dialog box

"""

import os
import tabnanny
import tokenize
import tkinter.messagebox as tkMessageBox
from idlelib import PyShell

from idlelib.configHandler import idleConf
from idlelib import macosxSupport

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:

    menudefs = [
        ('run', [None,
                 ('Check Module', '<<check-module>>'),
                 ('Run Module', '<<run-module>>'), ]), ]

    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

        if macosxSupport.isCocoaTk():
            self.editwin.text_frame.bind('<<run-module-event-2>>', self._run_module_event)

    def check_module_event(self, event):
        filename = self.getfilename()
        if not filename:
            return 'break'
        if not self.checksyntax(filename):
            return 'break'
        if not self.tabnanny(filename):
            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_module_event(self, event):
        if macosxSupport.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_module_event(self, event):
        """Run the module after setting up the environment.

        First check the syntax.  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.
        """

        filename = self.getfilename()
        if not filename:
            return 'break'
        code = self.checksyntax(filename)
        if not code:
            return 'break'
        if not self.tabnanny(filename):
            return 'break'
        interp = self.shell.interp
        if PyShell.use_subprocess:
            interp.restart_subprocess(with_cwd=False, filename=
                        self.editwin._filename_to_unicode(filename))
        dirname = os.path.dirname(filename)
        # XXX Too often this discards arguments the user just set...
        interp.runcommand("""if 1:
            __file__ = {filename!r}
            import sys as _sys
            from os.path import basename as _basename
            if (not _sys.argv or
                _basename(_sys.argv[0]) != _basename(__file__)):
                _sys.argv = [__file__]
            import os as _os
            _os.chdir({dirname!r})
            del _sys, _basename, _os
            \n""".format(filename=filename, dirname=dirname))
        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 = tkMessageBox.askokcancel(title="Save Before Run or Check",
                                           message=msg,
                                           default=tkMessageBox.OK,
                                           parent=self.editwin.text)
        return confirm

    def 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()


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
12 Aug 2024 8.41 AM
root / linksafe
0755
Icons
--
12 Aug 2024 8.41 AM
root / linksafe
0755
__pycache__
--
12 Aug 2024 8.41 AM
root / linksafe
0755
idle_test
--
12 Aug 2024 8.41 AM
root / linksafe
0755
AutoComplete.py
8.985 KB
31 May 2024 1.51 PM
root / linksafe
0644
AutoCompleteWindow.py
17.323 KB
31 May 2024 1.51 PM
root / linksafe
0644
AutoExpand.py
3.315 KB
31 May 2024 1.51 PM
root / linksafe
0644
Bindings.py
3.038 KB
31 May 2024 1.51 PM
root / linksafe
0644
CREDITS.txt
1.822 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
CallTipWindow.py
5.894 KB
31 May 2024 1.51 PM
root / linksafe
0644
CallTips.py
5.793 KB
31 May 2024 1.51 PM
root / linksafe
0644
ChangeLog
55.066 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
ClassBrowser.py
6.835 KB
31 May 2024 1.51 PM
root / linksafe
0644
CodeContext.py
8.161 KB
31 May 2024 1.51 PM
root / linksafe
0644
ColorDelegator.py
10.35 KB
31 May 2024 1.51 PM
root / linksafe
0644
Debugger.py
18.318 KB
31 May 2024 1.51 PM
root / linksafe
0644
Delegator.py
1.019 KB
31 May 2024 1.51 PM
root / linksafe
0644
EditorWindow.py
64.058 KB
31 May 2024 1.51 PM
root / linksafe
0644
FileList.py
3.724 KB
31 May 2024 1.51 PM
root / linksafe
0644
FormatParagraph.py
7.116 KB
31 May 2024 1.51 PM
root / linksafe
0644
GrepDialog.py
5.004 KB
31 May 2024 1.51 PM
root / linksafe
0644
HISTORY.txt
10.07 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
HyperParser.py
12.575 KB
31 May 2024 1.51 PM
root / linksafe
0644
IOBinding.py
20.116 KB
31 May 2024 1.51 PM
root / linksafe
0644
IdleHistory.py
3.957 KB
31 May 2024 1.51 PM
root / linksafe
0644
MultiCall.py
18.136 KB
31 May 2024 1.51 PM
root / linksafe
0644
MultiStatusBar.py
1.316 KB
31 May 2024 1.51 PM
root / linksafe
0644
NEWS.txt
15.172 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
NEWS2x.txt
26.535 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
ObjectBrowser.py
3.882 KB
31 May 2024 1.51 PM
root / linksafe
0644
OutputWindow.py
4.291 KB
31 May 2024 1.51 PM
root / linksafe
0644
ParenMatch.py
6.557 KB
31 May 2024 1.51 PM
root / linksafe
0644
PathBrowser.py
3.132 KB
31 May 2024 1.51 PM
root / linksafe
0644
Percolator.py
3.104 KB
31 May 2024 1.51 PM
root / linksafe
0644
PyParse.py
19.981 KB
31 May 2024 1.51 PM
root / linksafe
0644
PyShell.py
57.467 KB
31 May 2024 1.51 PM
root / linksafe
0755
README.txt
7.706 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
RemoteDebugger.py
11.726 KB
31 May 2024 1.51 PM
root / linksafe
0644
RemoteObjectBrowser.py
0.941 KB
31 May 2024 1.51 PM
root / linksafe
0644
ReplaceDialog.py
7.306 KB
31 May 2024 1.51 PM
root / linksafe
0644
RstripExtension.py
1.025 KB
31 May 2024 1.51 PM
root / linksafe
0644
ScriptBinding.py
7.872 KB
31 May 2024 1.51 PM
root / linksafe
0644
ScrolledList.py
4.272 KB
31 May 2024 1.51 PM
root / linksafe
0644
SearchDialog.py
3.054 KB
31 May 2024 1.51 PM
root / linksafe
0644
SearchDialogBase.py
6.845 KB
31 May 2024 1.51 PM
root / linksafe
0644
SearchEngine.py
7.31 KB
31 May 2024 1.51 PM
root / linksafe
0644
StackViewer.py
4.322 KB
31 May 2024 1.51 PM
root / linksafe
0644
TODO.txt
8.279 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
ToolTip.py
3.099 KB
31 May 2024 1.51 PM
root / linksafe
0644
TreeWidget.py
14.672 KB
31 May 2024 1.51 PM
root / linksafe
0644
UndoDelegator.py
10.723 KB
31 May 2024 1.51 PM
root / linksafe
0644
WidgetRedirector.py
6.776 KB
31 May 2024 1.51 PM
root / linksafe
0644
WindowList.py
2.414 KB
31 May 2024 1.51 PM
root / linksafe
0644
ZoomHeight.py
1.27 KB
31 May 2024 1.51 PM
root / linksafe
0644
__init__.py
0.327 KB
31 May 2024 1.51 PM
root / linksafe
0644
__main__.py
0.155 KB
31 May 2024 1.51 PM
root / linksafe
0644
aboutDialog.py
6.823 KB
31 May 2024 1.51 PM
root / linksafe
0644
config-extensions.def
2.896 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
config-highlight.def
2.456 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
config-keys.def
7.595 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
config-main.def
2.503 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
configDialog.py
63.536 KB
31 May 2024 1.51 PM
root / linksafe
0644
configHandler.py
31.69 KB
31 May 2024 1.51 PM
root / linksafe
0644
configHelpSourceEdit.py
6.657 KB
31 May 2024 1.51 PM
root / linksafe
0644
configSectionNameDialog.py
3.913 KB
31 May 2024 1.51 PM
root / linksafe
0644
dynOptionMenuWidget.py
1.943 KB
31 May 2024 1.51 PM
root / linksafe
0644
extend.txt
3.557 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
help.html
42.394 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
help.py
10.695 KB
31 May 2024 1.51 PM
root / linksafe
0644
help.txt
17.48 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
idle.py
0.442 KB
31 May 2024 1.51 PM
root / linksafe
0644
idle.pyw
0.557 KB
1 Nov 2019 11.02 PM
root / linksafe
0644
idlever.py
0.405 KB
31 May 2024 1.51 PM
root / linksafe
0644
keybindingDialog.py
12.125 KB
31 May 2024 1.51 PM
root / linksafe
0644
macosxSupport.py
8.48 KB
31 May 2024 1.51 PM
root / linksafe
0644
rpc.py
20.297 KB
31 May 2024 1.51 PM
root / linksafe
0644
run.py
13.544 KB
31 May 2024 1.51 PM
root / linksafe
0644
tabbedpages.py
17.986 KB
31 May 2024 1.51 PM
root / linksafe
0644
textView.py
3.339 KB
31 May 2024 1.51 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF