$87 GRAYBYTE WORDPRESS FILE MANAGER $90

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/python36/lib64/python3.6/idlelib/

HOME
Current File : /opt/alt/python36/lib64/python3.6/idlelib//debugobj.py
# XXX TO DO:
# - popup menu
# - support partial or total redisplay
# - more doc strings
# - tooltips

# object browser

# XXX TO DO:
# - for classes/modules, add "open source" to object browser
from reprlib import Repr

from idlelib.tree import TreeItem, TreeNode, ScrolledCanvas

myrepr = Repr()
myrepr.maxstring = 100
myrepr.maxother = 100

class ObjectTreeItem(TreeItem):
    def __init__(self, labeltext, object, setfunction=None):
        self.labeltext = labeltext
        self.object = object
        self.setfunction = setfunction
    def GetLabelText(self):
        return self.labeltext
    def GetText(self):
        return myrepr.repr(self.object)
    def GetIconName(self):
        if not self.IsExpandable():
            return "python"
    def IsEditable(self):
        return self.setfunction is not None
    def SetText(self, text):
        try:
            value = eval(text)
            self.setfunction(value)
        except:
            pass
        else:
            self.object = value
    def IsExpandable(self):
        return not not dir(self.object)
    def GetSubList(self):
        keys = dir(self.object)
        sublist = []
        for key in keys:
            try:
                value = getattr(self.object, key)
            except AttributeError:
                continue
            item = make_objecttreeitem(
                str(key) + " =",
                value,
                lambda value, key=key, object=self.object:
                    setattr(object, key, value))
            sublist.append(item)
        return sublist

class ClassTreeItem(ObjectTreeItem):
    def IsExpandable(self):
        return True
    def GetSubList(self):
        sublist = ObjectTreeItem.GetSubList(self)
        if len(self.object.__bases__) == 1:
            item = make_objecttreeitem("__bases__[0] =",
                self.object.__bases__[0])
        else:
            item = make_objecttreeitem("__bases__ =", self.object.__bases__)
        sublist.insert(0, item)
        return sublist

class AtomicObjectTreeItem(ObjectTreeItem):
    def IsExpandable(self):
        return False

class SequenceTreeItem(ObjectTreeItem):
    def IsExpandable(self):
        return len(self.object) > 0
    def keys(self):
        return range(len(self.object))
    def GetSubList(self):
        sublist = []
        for key in self.keys():
            try:
                value = self.object[key]
            except KeyError:
                continue
            def setfunction(value, key=key, object=self.object):
                object[key] = value
            item = make_objecttreeitem("%r:" % (key,), value, setfunction)
            sublist.append(item)
        return sublist

class DictTreeItem(SequenceTreeItem):
    def keys(self):
        keys = list(self.object.keys())
        try:
            keys.sort()
        except:
            pass
        return keys

dispatch = {
    int: AtomicObjectTreeItem,
    float: AtomicObjectTreeItem,
    str: AtomicObjectTreeItem,
    tuple: SequenceTreeItem,
    list: SequenceTreeItem,
    dict: DictTreeItem,
    type: ClassTreeItem,
}

def make_objecttreeitem(labeltext, object, setfunction=None):
    t = type(object)
    if t in dispatch:
        c = dispatch[t]
    else:
        c = ObjectTreeItem
    return c(labeltext, object, setfunction)


def _object_browser(parent):  # htest #
    import sys
    from tkinter import Toplevel
    top = Toplevel(parent)
    top.title("Test debug object browser")
    x, y = map(int, parent.geometry().split('+')[1:])
    top.geometry("+%d+%d" % (x + 100, y + 175))
    top.configure(bd=0, bg="yellow")
    top.focus_set()
    sc = ScrolledCanvas(top, bg="white", highlightthickness=0, takefocus=1)
    sc.frame.pack(expand=1, fill="both")
    item = make_objecttreeitem("sys", sys)
    node = TreeNode(sc.canvas, None, item)
    node.update()

if __name__ == '__main__':
    from unittest import main
    main('idlelib.idle_test.test_debugobj', verbosity=2, exit=False)

    from idlelib.idle_test.htest import run
    run(_object_browser)


Current_dir [ NOT WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
24 May 2024 8.34 AM
root / linksafe
0755
Icons
--
24 May 2024 8.33 AM
root / linksafe
0755
__pycache__
--
24 May 2024 8.33 AM
root / linksafe
0755
idle_test
--
24 May 2024 8.33 AM
root / linksafe
0755
CREDITS.txt
1.822 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
ChangeLog
55.039 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
HISTORY.txt
10.07 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
NEWS.txt
38.905 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
NEWS2x.txt
26.535 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
README.txt
9.367 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
TODO.txt
8.279 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
__init__.py
0.387 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
__main__.py
0.155 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
_pyclbr.py
14.843 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
autocomplete.py
9.105 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
autocomplete_w.py
19.364 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
autoexpand.py
3.141 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
browser.py
8.087 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
calltip.py
5.925 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
calltip_w.py
6.944 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
codecontext.py
10.244 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
colorizer.py
11.011 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
config-extensions.def
2.213 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
config-highlight.def
2.624 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
config-keys.def
10.522 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
config-main.def
3.055 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
config.py
37.967 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
config_key.py
13.094 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
configdialog.py
98.688 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
debugger.py
18.649 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
debugger_r.py
11.855 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
debugobj.py
3.96 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
debugobj_r.py
1.057 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
delegator.py
1.019 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
dynoption.py
1.97 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
editor.py
65.698 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
extend.txt
3.557 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
filelist.py
3.805 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
grep.py
6.584 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
help.html
53.822 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
help.py
11.06 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
help_about.py
8.771 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
history.py
3.948 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
hyperparser.py
12.58 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
idle.py
0.443 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
idle.pyw
0.557 KB
4 Sep 2021 3.49 AM
root / linksafe
0644
iomenu.py
20.248 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
macosx.py
9.434 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
mainmenu.py
3.616 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
multicall.py
18.211 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
outwin.py
5.672 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
paragraph.py
6.999 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
parenmatch.py
7.035 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
pathbrowser.py
3.118 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
percolator.py
3.057 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
pyparse.py
19.646 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
pyshell.py
56.375 KB
17 Apr 2024 5.19 PM
root / linksafe
0755
query.py
12.143 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
redirector.py
6.714 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
replace.py
7.326 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
rpc.py
20.642 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
rstrip.py
0.848 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
run.py
16.867 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
runscript.py
7.657 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
scrolledlist.py
4.354 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
search.py
3.09 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
searchbase.py
7.276 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
searchengine.py
7.297 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
squeezer.py
12.996 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
stackviewer.py
4.35 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
statusbar.py
1.407 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
textview.py
5.978 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
tooltip.py
6.334 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
tree.py
14.735 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
undo.py
10.788 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
window.py
2.527 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
zoomheight.py
1.309 KB
17 Apr 2024 5.19 PM
root / linksafe
0644
zzdummy.py
0.938 KB
17 Apr 2024 5.19 PM
root / linksafe
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025 CONTACT ME
Static GIF