404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.147.85.80: ~ $
import os
import bdb
from Tkinter import *
from idlelib.WindowList import ListedToplevel
from idlelib.ScrolledList import ScrolledList
from idlelib import macosxSupport


class Idb(bdb.Bdb):

    def __init__(self, gui):
        self.gui = gui
        bdb.Bdb.__init__(self)

    def user_line(self, frame):
        if self.in_rpc_code(frame):
            self.set_step()
            return
        message = self.__frame2message(frame)
        try:
            self.gui.interaction(message, frame)
        except TclError:  # When closing debugger window with [x] in 3.x
            pass

    def user_exception(self, frame, info):
        if self.in_rpc_code(frame):
            self.set_step()
            return
        message = self.__frame2message(frame)
        self.gui.interaction(message, frame, info)

    def in_rpc_code(self, frame):
        if frame.f_code.co_filename.count('rpc.py'):
            return True
        else:
            prev_frame = frame.f_back
            if prev_frame.f_code.co_filename.count('Debugger.py'):
                # (that test will catch both Debugger.py and RemoteDebugger.py)
                return False
            return self.in_rpc_code(prev_frame)

    def __frame2message(self, frame):
        code = frame.f_code
        filename = code.co_filename
        lineno = frame.f_lineno
        basename = os.path.basename(filename)
        message = "%s:%s" % (basename, lineno)
        if code.co_name != "?":
            message = "%s: %s()" % (message, code.co_name)
        return message


class Debugger:

    vstack = vsource = vlocals = vglobals = None

    def __init__(self, pyshell, idb=None):
        if idb is None:
            idb = Idb(self)
        self.pyshell = pyshell
        self.idb = idb
        self.frame = None
        self.make_gui()
        self.interacting = 0
        self.nesting_level = 0

    def run(self, *args):
        # Deal with the scenario where we've already got a program running
        # in the debugger and we want to start another. If that is the case,
        # our second 'run' was invoked from an event dispatched not from
        # the main event loop, but from the nested event loop in 'interaction'
        # below. So our stack looks something like this:
        #       outer main event loop
        #         run()
        #           <running program with traces>
        #             callback to debugger's interaction()
        #               nested event loop
        #                 run() for second command
        #
        # This kind of nesting of event loops causes all kinds of problems
        # (see e.g. issue #24455) especially when dealing with running as a
        # subprocess, where there's all kinds of extra stuff happening in
        # there - insert a traceback.print_stack() to check it out.
        #
        # By this point, we've already called restart_subprocess() in
        # ScriptBinding. However, we also need to unwind the stack back to
        # that outer event loop.  To accomplish this, we:
        #   - return immediately from the nested run()
        #   - abort_loop ensures the nested event loop will terminate
        #   - the debugger's interaction routine completes normally
        #   - the restart_subprocess() will have taken care of stopping
        #     the running program, which will also let the outer run complete
        #
        # That leaves us back at the outer main event loop, at which point our
        # after event can fire, and we'll come back to this routine with a
        # clean stack.
        if self.nesting_level > 0:
            self.abort_loop()
            self.root.after(100, lambda: self.run(*args))
            return
        try:
            self.interacting = 1
            return self.idb.run(*args)
        finally:
            self.interacting = 0

    def close(self, event=None):
        try:
            self.quit()
        except Exception:
            pass
        if self.interacting:
            self.top.bell()
            return
        if self.stackviewer:
            self.stackviewer.close(); self.stackviewer = None
        # Clean up pyshell if user clicked debugger control close widget.
        # (Causes a harmless extra cycle through close_debugger() if user
        # toggled debugger from pyshell Debug menu)
        self.pyshell.close_debugger()
        # Now close the debugger control window....
        self.top.destroy()

    def make_gui(self):
        pyshell = self.pyshell
        self.flist = pyshell.flist
        self.root = root = pyshell.root
        self.top = top = ListedToplevel(root)
        self.top.wm_title("Debug Control")
        self.top.wm_iconname("Debug")
        top.wm_protocol("WM_DELETE_WINDOW", self.close)
        self.top.bind("<Escape>", self.close)
        #
        self.bframe = bframe = Frame(top)
        self.bframe.pack(anchor="w")
        self.buttons = bl = []
        #
        self.bcont = b = Button(bframe, text="Go", command=self.cont)
        bl.append(b)
        self.bstep = b = Button(bframe, text="Step", command=self.step)
        bl.append(b)
        self.bnext = b = Button(bframe, text="Over", command=self.next)
        bl.append(b)
        self.bret = b = Button(bframe, text="Out", command=self.ret)
        bl.append(b)
        self.bret = b = Button(bframe, text="Quit", command=self.quit)
        bl.append(b)
        #
        for b in bl:
            b.configure(state="disabled")
            b.pack(side="left")
        #
        self.cframe = cframe = Frame(bframe)
        self.cframe.pack(side="left")
        #
        if not self.vstack:
            self.__class__.vstack = BooleanVar(top)
            self.vstack.set(1)
        self.bstack = Checkbutton(cframe,
            text="Stack", command=self.show_stack, variable=self.vstack)
        self.bstack.grid(row=0, column=0)
        if not self.vsource:
            self.__class__.vsource = BooleanVar(top)
        self.bsource = Checkbutton(cframe,
            text="Source", command=self.show_source, variable=self.vsource)
        self.bsource.grid(row=0, column=1)
        if not self.vlocals:
            self.__class__.vlocals = BooleanVar(top)
            self.vlocals.set(1)
        self.blocals = Checkbutton(cframe,
            text="Locals", command=self.show_locals, variable=self.vlocals)
        self.blocals.grid(row=1, column=0)
        if not self.vglobals:
            self.__class__.vglobals = BooleanVar(top)
        self.bglobals = Checkbutton(cframe,
            text="Globals", command=self.show_globals, variable=self.vglobals)
        self.bglobals.grid(row=1, column=1)
        #
        self.status = Label(top, anchor="w")
        self.status.pack(anchor="w")
        self.error = Label(top, anchor="w")
        self.error.pack(anchor="w", fill="x")
        self.errorbg = self.error.cget("background")
        #
        self.fstack = Frame(top, height=1)
        self.fstack.pack(expand=1, fill="both")
        self.flocals = Frame(top)
        self.flocals.pack(expand=1, fill="both")
        self.fglobals = Frame(top, height=1)
        self.fglobals.pack(expand=1, fill="both")
        #
        if self.vstack.get():
            self.show_stack()
        if self.vlocals.get():
            self.show_locals()
        if self.vglobals.get():
            self.show_globals()

    def interaction(self, message, frame, info=None):
        self.frame = frame
        self.status.configure(text=message)
        #
        if info:
            type, value, tb = info
            try:
                m1 = type.__name__
            except AttributeError:
                m1 = "%s" % str(type)
            if value is not None:
                try:
                    m1 = "%s: %s" % (m1, str(value))
                except:
                    pass
            bg = "yellow"
        else:
            m1 = ""
            tb = None
            bg = self.errorbg
        self.error.configure(text=m1, background=bg)
        #
        sv = self.stackviewer
        if sv:
            stack, i = self.idb.get_stack(self.frame, tb)
            sv.load_stack(stack, i)
        #
        self.show_variables(1)
        #
        if self.vsource.get():
            self.sync_source_line()
        #
        for b in self.buttons:
            b.configure(state="normal")
        #
        self.top.wakeup()
        # Nested main loop: Tkinter's main loop is not reentrant, so use
        # Tcl's vwait facility, which reenters the event loop until an
        # event handler sets the variable we're waiting on
        self.nesting_level += 1
        self.root.tk.call('vwait', '::idledebugwait')
        self.nesting_level -= 1
        #
        for b in self.buttons:
            b.configure(state="disabled")
        self.status.configure(text="")
        self.error.configure(text="", background=self.errorbg)
        self.frame = None

    def sync_source_line(self):
        frame = self.frame
        if not frame:
            return
        filename, lineno = self.__frame2fileline(frame)
        if filename[:1] + filename[-1:] != "<>" and os.path.exists(filename):
            self.flist.gotofileline(filename, lineno)

    def __frame2fileline(self, frame):
        code = frame.f_code
        filename = code.co_filename
        lineno = frame.f_lineno
        return filename, lineno

    def cont(self):
        self.idb.set_continue()
        self.abort_loop()

    def step(self):
        self.idb.set_step()
        self.abort_loop()

    def next(self):
        self.idb.set_next(self.frame)
        self.abort_loop()

    def ret(self):
        self.idb.set_return(self.frame)
        self.abort_loop()

    def quit(self):
        self.idb.set_quit()
        self.abort_loop()

    def abort_loop(self):
        self.root.tk.call('set', '::idledebugwait', '1')

    stackviewer = None

    def show_stack(self):
        if not self.stackviewer and self.vstack.get():
            self.stackviewer = sv = StackViewer(self.fstack, self.flist, self)
            if self.frame:
                stack, i = self.idb.get_stack(self.frame, None)
                sv.load_stack(stack, i)
        else:
            sv = self.stackviewer
            if sv and not self.vstack.get():
                self.stackviewer = None
                sv.close()
            self.fstack['height'] = 1

    def show_source(self):
        if self.vsource.get():
            self.sync_source_line()

    def show_frame(self, stackitem):
        self.frame = stackitem[0]  # lineno is stackitem[1]
        self.show_variables()

    localsviewer = None
    globalsviewer = None

    def show_locals(self):
        lv = self.localsviewer
        if self.vlocals.get():
            if not lv:
                self.localsviewer = NamespaceViewer(self.flocals, "Locals")
        else:
            if lv:
                self.localsviewer = None
                lv.close()
                self.flocals['height'] = 1
        self.show_variables()

    def show_globals(self):
        gv = self.globalsviewer
        if self.vglobals.get():
            if not gv:
                self.globalsviewer = NamespaceViewer(self.fglobals, "Globals")
        else:
            if gv:
                self.globalsviewer = None
                gv.close()
                self.fglobals['height'] = 1
        self.show_variables()

    def show_variables(self, force=0):
        lv = self.localsviewer
        gv = self.globalsviewer
        frame = self.frame
        if not frame:
            ldict = gdict = None
        else:
            ldict = frame.f_locals
            gdict = frame.f_globals
            if lv and gv and ldict is gdict:
                ldict = None
        if lv:
            lv.load_dict(ldict, force, self.pyshell.interp.rpcclt)
        if gv:
            gv.load_dict(gdict, force, self.pyshell.interp.rpcclt)

    def set_breakpoint_here(self, filename, lineno):
        self.idb.set_break(filename, lineno)

    def clear_breakpoint_here(self, filename, lineno):
        self.idb.clear_break(filename, lineno)

    def clear_file_breaks(self, filename):
        self.idb.clear_all_file_breaks(filename)

    def load_breakpoints(self):
        "Load PyShellEditorWindow breakpoints into subprocess debugger"
        pyshell_edit_windows = self.pyshell.flist.inversedict.keys()
        for editwin in pyshell_edit_windows:
            filename = editwin.io.filename
            try:
                for lineno in editwin.breakpoints:
                    self.set_breakpoint_here(filename, lineno)
            except AttributeError:
                continue

class StackViewer(ScrolledList):

    def __init__(self, master, flist, gui):
        if macosxSupport.isAquaTk():
            # At least on with the stock AquaTk version on OSX 10.4 you'll
            # get a shaking GUI that eventually kills IDLE if the width
            # argument is specified.
            ScrolledList.__init__(self, master)
        else:
            ScrolledList.__init__(self, master, width=80)
        self.flist = flist
        self.gui = gui
        self.stack = []

    def load_stack(self, stack, index=None):
        self.stack = stack
        self.clear()
        for i in range(len(stack)):
            frame, lineno = stack[i]
            try:
                modname = frame.f_globals["__name__"]
            except:
                modname = "?"
            code = frame.f_code
            filename = code.co_filename
            funcname = code.co_name
            import linecache
            sourceline = linecache.getline(filename, lineno)
            import string
            sourceline = string.strip(sourceline)
            if funcname in ("?", "", None):
                item = "%s, line %d: %s" % (modname, lineno, sourceline)
            else:
                item = "%s.%s(), line %d: %s" % (modname, funcname,
                                                 lineno, sourceline)
            if i == index:
                item = "> " + item
            self.append(item)
        if index is not None:
            self.select(index)

    def popup_event(self, event):
        "override base method"
        if self.stack:
            return ScrolledList.popup_event(self, event)

    def fill_menu(self):
        "override base method"
        menu = self.menu
        menu.add_command(label="Go to source line",
                         command=self.goto_source_line)
        menu.add_command(label="Show stack frame",
                         command=self.show_stack_frame)

    def on_select(self, index):
        "override base method"
        if 0 <= index < len(self.stack):
            self.gui.show_frame(self.stack[index])

    def on_double(self, index):
        "override base method"
        self.show_source(index)

    def goto_source_line(self):
        index = self.listbox.index("active")
        self.show_source(index)

    def show_stack_frame(self):
        index = self.listbox.index("active")
        if 0 <= index < len(self.stack):
            self.gui.show_frame(self.stack[index])

    def show_source(self, index):
        if not (0 <= index < len(self.stack)):
            return
        frame, lineno = self.stack[index]
        code = frame.f_code
        filename = code.co_filename
        if os.path.isfile(filename):
            edit = self.flist.open(filename)
            if edit:
                edit.gotoline(lineno)


class NamespaceViewer:

    def __init__(self, master, title, dict=None):
        width = 0
        height = 40
        if dict:
            height = 20*len(dict) # XXX 20 == observed height of Entry widget
        self.master = master
        self.title = title
        import repr
        self.repr = repr.Repr()
        self.repr.maxstring = 60
        self.repr.maxother = 60
        self.frame = frame = Frame(master)
        self.frame.pack(expand=1, fill="both")
        self.label = Label(frame, text=title, borderwidth=2, relief="groove")
        self.label.pack(fill="x")
        self.vbar = vbar = Scrollbar(frame, name="vbar")
        vbar.pack(side="right", fill="y")
        self.canvas = canvas = Canvas(frame,
                                      height=min(300, max(40, height)),
                                      scrollregion=(0, 0, width, height))
        canvas.pack(side="left", fill="both", expand=1)
        vbar["command"] = canvas.yview
        canvas["yscrollcommand"] = vbar.set
        self.subframe = subframe = Frame(canvas)
        self.sfid = canvas.create_window(0, 0, window=subframe, anchor="nw")
        self.load_dict(dict)

    dict = -1

    def load_dict(self, dict, force=0, rpc_client=None):
        if dict is self.dict and not force:
            return
        subframe = self.subframe
        frame = self.frame
        for c in subframe.children.values():
            c.destroy()
        self.dict = None
        if not dict:
            l = Label(subframe, text="None")
            l.grid(row=0, column=0)
        else:
            names = dict.keys()
            names.sort()
            row = 0
            for name in names:
                value = dict[name]
                svalue = self.repr.repr(value) # repr(value)
                # Strip extra quotes caused by calling repr on the (already)
                # repr'd value sent across the RPC interface:
                if rpc_client:
                    svalue = svalue[1:-1]
                l = Label(subframe, text=name)
                l.grid(row=row, column=0, sticky="nw")
                l = Entry(subframe, width=0, borderwidth=0)
                l.insert(0, svalue)
                l.grid(row=row, column=1, sticky="nw")
                row = row+1
        self.dict = dict
        # XXX Could we use a <Configure> callback for the following?
        subframe.update_idletasks() # Alas!
        width = subframe.winfo_reqwidth()
        height = subframe.winfo_reqheight()
        canvas = self.canvas
        self.canvas["scrollregion"] = (0, 0, width, height)
        if height > 300:
            canvas["height"] = 300
            frame.pack(expand=1)
        else:
            canvas["height"] = height
            frame.pack(expand=0)

    def close(self):
        self.frame.destroy()

Filemanager

Name Type Size Permission Actions
Icons Folder 0755
idle_test Folder 0755
AutoComplete.py File 8.75 KB 0644
AutoComplete.pyc File 7.82 KB 0644
AutoComplete.pyo File 7.82 KB 0644
AutoCompleteWindow.py File 16.91 KB 0644
AutoCompleteWindow.pyc File 12.19 KB 0644
AutoCompleteWindow.pyo File 12.13 KB 0644
AutoExpand.py File 3.32 KB 0644
AutoExpand.pyc File 3.42 KB 0644
AutoExpand.pyo File 3.42 KB 0644
Bindings.py File 2.91 KB 0644
Bindings.pyc File 4.58 KB 0644
Bindings.pyo File 4.58 KB 0644
CREDITS.txt File 1.82 KB 0644
CallTipWindow.py File 5.92 KB 0644
CallTipWindow.pyc File 5.99 KB 0644
CallTipWindow.pyo File 5.99 KB 0644
CallTips.py File 7.56 KB 0644
CallTips.pyc File 7.94 KB 0644
CallTips.pyo File 7.94 KB 0644
ChangeLog File 55.07 KB 0644
ClassBrowser.py File 6.83 KB 0644
ClassBrowser.pyc File 9.28 KB 0644
ClassBrowser.pyo File 9.28 KB 0644
CodeContext.py File 8.15 KB 0644
CodeContext.pyc File 6.5 KB 0644
CodeContext.pyo File 6.46 KB 0644
ColorDelegator.py File 9.53 KB 0644
ColorDelegator.pyc File 8.69 KB 0644
ColorDelegator.pyo File 8.69 KB 0644
Debugger.py File 17.81 KB 0644
Debugger.pyc File 17.13 KB 0644
Debugger.pyo File 17.13 KB 0644
Delegator.py File 665 B 0644
Delegator.pyc File 1.24 KB 0644
Delegator.pyo File 1.24 KB 0644
EditorWindow.py File 63.96 KB 0644
EditorWindow.pyc File 55.53 KB 0644
EditorWindow.pyo File 55.43 KB 0644
FileList.py File 3.63 KB 0644
FileList.pyc File 3.93 KB 0644
FileList.pyo File 3.9 KB 0644
FormatParagraph.py File 7.12 KB 0644
FormatParagraph.pyc File 6.97 KB 0644
FormatParagraph.pyo File 6.97 KB 0644
GrepDialog.py File 5.02 KB 0644
GrepDialog.pyc File 6.27 KB 0644
GrepDialog.pyo File 6.27 KB 0644
HISTORY.txt File 10.08 KB 0644
HyperParser.py File 10.25 KB 0644
HyperParser.pyc File 6.52 KB 0644
HyperParser.pyo File 6.52 KB 0644
IOBinding.py File 21.4 KB 0644
IOBinding.pyc File 18.1 KB 0644
IOBinding.pyo File 18.1 KB 0644
IdleHistory.py File 3.96 KB 0644
IdleHistory.pyc File 3.96 KB 0644
IdleHistory.pyo File 3.96 KB 0644
MultiCall.py File 17.29 KB 0644
MultiCall.pyc File 15.97 KB 0644
MultiCall.pyo File 15.9 KB 0644
MultiStatusBar.py File 1.32 KB 0644
MultiStatusBar.pyc File 2.23 KB 0644
MultiStatusBar.pyo File 2.23 KB 0644
NEWS.txt File 46.14 KB 0644
ObjectBrowser.py File 4.27 KB 0644
ObjectBrowser.pyc File 6.9 KB 0644
ObjectBrowser.pyo File 6.9 KB 0644
OutputWindow.py File 4.47 KB 0644
OutputWindow.pyc File 5.11 KB 0644
OutputWindow.pyo File 5.11 KB 0644
ParenMatch.py File 6.56 KB 0644
ParenMatch.pyc File 6.96 KB 0644
ParenMatch.pyo File 6.96 KB 0644
PathBrowser.py File 2.94 KB 0644
PathBrowser.pyc File 4.38 KB 0644
PathBrowser.pyo File 4.38 KB 0644
Percolator.py File 3.15 KB 0644
Percolator.pyc File 4.5 KB 0644
Percolator.pyo File 4.32 KB 0644
PyParse.py File 19.05 KB 0644
PyParse.pyc File 9.77 KB 0644
PyParse.pyo File 9.34 KB 0644
PyShell.py File 57.48 KB 0755
PyShell.pyc File 51.59 KB 0644
PyShell.pyo File 51.49 KB 0644
README.txt File 7.71 KB 0644
RemoteDebugger.py File 11.36 KB 0644
RemoteDebugger.pyc File 15.94 KB 0644
RemoteDebugger.pyo File 15.79 KB 0644
RemoteObjectBrowser.py File 942 B 0644
RemoteObjectBrowser.pyc File 2.1 KB 0644
RemoteObjectBrowser.pyo File 2.1 KB 0644
ReplaceDialog.py File 6.48 KB 0644
ReplaceDialog.pyc File 7.57 KB 0644
ReplaceDialog.pyo File 7.57 KB 0644
RstripExtension.py File 1.03 KB 0644
RstripExtension.pyc File 1.58 KB 0644
RstripExtension.pyo File 1.58 KB 0644
ScriptBinding.py File 8.26 KB 0644
ScriptBinding.pyc File 8.01 KB 0644
ScriptBinding.pyo File 8.01 KB 0644
ScrolledList.py File 4.27 KB 0644
ScrolledList.pyc File 6.33 KB 0644
ScrolledList.pyo File 6.33 KB 0644
SearchDialog.py File 2.57 KB 0644
SearchDialog.pyc File 3.89 KB 0644
SearchDialog.pyo File 3.89 KB 0644
SearchDialogBase.py File 6.93 KB 0644
SearchDialogBase.pyc File 8.26 KB 0644
SearchDialogBase.pyo File 8.26 KB 0644
SearchEngine.py File 7.29 KB 0644
SearchEngine.pyc File 8.11 KB 0644
SearchEngine.pyo File 8.11 KB 0644
StackViewer.py File 4.33 KB 0644
StackViewer.pyc File 6.25 KB 0644
StackViewer.pyo File 6.25 KB 0644
TODO.txt File 8.28 KB 0644
ToolTip.py File 3.1 KB 0644
ToolTip.pyc File 4.56 KB 0644
ToolTip.pyo File 4.56 KB 0644
TreeWidget.py File 14.68 KB 0644
TreeWidget.pyc File 17.28 KB 0644
TreeWidget.pyo File 17.28 KB 0644
UndoDelegator.py File 10.53 KB 0644
UndoDelegator.pyc File 13.24 KB 0644
UndoDelegator.pyo File 13.24 KB 0644
WidgetRedirector.py File 6.74 KB 0644
WidgetRedirector.pyc File 7.59 KB 0644
WidgetRedirector.pyo File 7.59 KB 0644
WindowList.py File 2.42 KB 0644
WindowList.pyc File 3.55 KB 0644
WindowList.pyo File 3.55 KB 0644
ZoomHeight.py File 1.27 KB 0644
ZoomHeight.pyc File 1.61 KB 0644
ZoomHeight.pyo File 1.61 KB 0644
__init__.py File 288 B 0644
__init__.pyc File 431 B 0644
__init__.pyo File 431 B 0644
aboutDialog.py File 6.85 KB 0644
aboutDialog.pyc File 6.69 KB 0644
aboutDialog.pyo File 6.69 KB 0644
config-extensions.def File 2.9 KB 0644
config-highlight.def File 2.46 KB 0644
config-keys.def File 7.59 KB 0644
config-main.def File 2.5 KB 0644
configDialog.py File 64.41 KB 0644
configDialog.pyc File 52.04 KB 0644
configDialog.pyo File 52.04 KB 0644
configHandler.py File 31.72 KB 0644
configHandler.pyc File 28.67 KB 0644
configHandler.pyo File 28.67 KB 0644
configHelpSourceEdit.py File 6.53 KB 0644
configHelpSourceEdit.pyc File 6.44 KB 0644
configHelpSourceEdit.pyo File 6.44 KB 0644
configSectionNameDialog.py File 3.95 KB 0644
configSectionNameDialog.pyc File 4.32 KB 0644
configSectionNameDialog.pyo File 4.32 KB 0644
dynOptionMenuWidget.py File 1.94 KB 0644
dynOptionMenuWidget.pyc File 2.72 KB 0644
dynOptionMenuWidget.pyo File 2.72 KB 0644
extend.txt File 3.56 KB 0644
help.html File 41.42 KB 0644
help.py File 10.78 KB 0644
help.pyc File 11.98 KB 0644
help.pyo File 11.98 KB 0644
help.txt File 11.86 KB 0644
idle.py File 453 B 0644
idle.pyc File 410 B 0644
idle.pyo File 410 B 0644
idle.pyw File 563 B 0644
idlever.py File 415 B 0644
idlever.pyc File 578 B 0644
idlever.pyo File 578 B 0644
keybindingDialog.py File 12.18 KB 0644
keybindingDialog.pyc File 11.89 KB 0644
keybindingDialog.pyo File 11.89 KB 0644
macosxSupport.py File 8.24 KB 0644
macosxSupport.pyc File 8.16 KB 0644
macosxSupport.pyo File 8.02 KB 0644
rpc.py File 19.68 KB 0644
rpc.pyc File 21.22 KB 0644
rpc.pyo File 21.12 KB 0644
run.py File 12.61 KB 0644
run.pyc File 13.1 KB 0644
run.pyo File 13.05 KB 0644
tabbedpages.py File 18.01 KB 0644
tabbedpages.pyc File 18.13 KB 0644
tabbedpages.pyo File 18.13 KB 0644
textView.py File 3.44 KB 0644
textView.pyc File 3.93 KB 0644
textView.pyo File 3.93 KB 0644