Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib64 /
python2.7 /
Demo /
tix /
Delete
Unzip
Name
Size
Permission
Date
Action
bitmaps
[ DIR ]
drwxr-xr-x
2026-08-17 17:21
samples
[ DIR ]
drwxr-xr-x
2026-08-17 17:21
INSTALL.txt
3.67
KB
-rw-r--r--
2013-05-12 05:32
README.txt
726
B
-rw-r--r--
2013-05-12 05:32
grid.py
550
B
-rw-r--r--
2013-05-12 05:32
grid.pyc
1.25
KB
-rw-r--r--
2026-08-05 22:07
grid.pyo
1.25
KB
-rw-r--r--
2026-08-05 22:07
tixwidgets.py
37.51
KB
-rw-r--r--
2013-05-12 05:32
tixwidgets.pyc
37.7
KB
-rw-r--r--
2026-08-05 22:07
tixwidgets.pyo
37.7
KB
-rw-r--r--
2026-08-05 22:07
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()