Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.129
Domains :
Cant Read [ /etc/named.conf ]
User : celfico1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
Demo /
tix /
Delete
Unzip
Name
Size
Permission
Date
Action
bitmaps
[ DIR ]
drwxr-xr-x
2026-05-04 18:19
samples
[ DIR ]
drwxr-xr-x
2026-05-04 18:19
INSTALL.txt
3.67
KB
-rw-r--r--
2013-05-12 03:32
README.txt
726
B
-rw-r--r--
2013-05-12 03:32
grid.py
550
B
-rw-r--r--
2013-05-12 03:32
grid.pyc
1.25
KB
-rw-r--r--
2026-03-30 18:06
grid.pyo
1.25
KB
-rw-r--r--
2026-03-30 18:06
tixwidgets.py
37.51
KB
-rw-r--r--
2013-05-12 03:32
tixwidgets.pyc
37.7
KB
-rw-r--r--
2026-03-30 18:06
tixwidgets.pyo
37.7
KB
-rw-r--r--
2026-03-30 18:06
Save
Rename
### import Tix as tk from pprint import pprint r= tk.Tk() r.title("test") l=tk.Label(r, name="a_label") l.pack() class MyGrid(tk.Grid): def __init__(self, *args, **kwargs): kwargs['editnotify']= self.editnotify tk.Grid.__init__(self, *args, **kwargs) def editnotify(self, x, y): return True g = MyGrid(r, name="a_grid", selectunit="cell") g.pack(fill=tk.BOTH) for x in xrange(5): for y in xrange(5): g.set(x,y,text=str((x,y))) c = tk.Button(r, text="Close", command=r.destroy) c.pack() tk.mainloop()