$92 GRAYBYTE WORDPRESS FILE MANAGER $68

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.217.254 | 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//percolator.py
from idlelib.delegator import Delegator
from idlelib.redirector import WidgetRedirector


class Percolator:

    def __init__(self, text):
        # XXX would be nice to inherit from Delegator
        self.text = text
        self.redir = WidgetRedirector(text)
        self.top = self.bottom = Delegator(text)
        self.bottom.insert = self.redir.register("insert", self.insert)
        self.bottom.delete = self.redir.register("delete", self.delete)
        self.filters = []

    def close(self):
        while self.top is not self.bottom:
            self.removefilter(self.top)
        self.top = None
        self.bottom.setdelegate(None)
        self.bottom = None
        self.redir.close()
        self.redir = None
        self.text = None

    def insert(self, index, chars, tags=None):
        # Could go away if inheriting from Delegator
        self.top.insert(index, chars, tags)

    def delete(self, index1, index2=None):
        # Could go away if inheriting from Delegator
        self.top.delete(index1, index2)

    def insertfilter(self, filter):
        # Perhaps rename to pushfilter()?
        assert isinstance(filter, Delegator)
        assert filter.delegate is None
        filter.setdelegate(self.top)
        self.top = filter

    def removefilter(self, filter):
        # XXX Perhaps should only support popfilter()?
        assert isinstance(filter, Delegator)
        assert filter.delegate is not None
        f = self.top
        if f is filter:
            self.top = filter.delegate
            filter.setdelegate(None)
        else:
            while f.delegate is not filter:
                assert f is not self.bottom
                f.resetcache()
                f = f.delegate
            f.setdelegate(filter.delegate)
            filter.setdelegate(None)


def _percolator(parent):  # htest #
    import tkinter as tk

    class Tracer(Delegator):
        def __init__(self, name):
            self.name = name
            Delegator.__init__(self, None)

        def insert(self, *args):
            print(self.name, ": insert", args)
            self.delegate.insert(*args)

        def delete(self, *args):
            print(self.name, ": delete", args)
            self.delegate.delete(*args)

    box = tk.Toplevel(parent)
    box.title("Test Percolator")
    x, y = map(int, parent.geometry().split('+')[1:])
    box.geometry("+%d+%d" % (x, y + 175))
    text = tk.Text(box)
    p = Percolator(text)
    pin = p.insertfilter
    pout = p.removefilter
    t1 = Tracer("t1")
    t2 = Tracer("t2")

    def toggle1():
        (pin if var1.get() else pout)(t1)
    def toggle2():
        (pin if var2.get() else pout)(t2)

    text.pack()
    var1 = tk.IntVar(parent)
    cb1 = tk.Checkbutton(box, text="Tracer1", command=toggle1, variable=var1)
    cb1.pack()
    var2 = tk.IntVar(parent)
    cb2 = tk.Checkbutton(box, text="Tracer2", command=toggle2, variable=var2)
    cb2.pack()

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

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


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