Linux newlinux5.pouyasazan.org 3.10.0-962.3.2.lve1.5.60.el7.x86_64 #1 SMP Fri Jul 23 07:07:00 EDT 2021 x86_64
LiteSpeed
Server IP : 88.99.66.243 & Your IP : 216.73.216.178
Domains :
Cant Read [ /etc/named.conf ]
User : wdbbsgxf
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
2025-12-19 06:49
samples
[ DIR ]
drwxr-xr-x
2025-12-19 06:49
INSTALL.txt
3.67
KB
-rw-r--r--
2013-05-12 08:02
README.txt
726
B
-rw-r--r--
2013-05-12 08:02
grid.py
550
B
-rw-r--r--
2013-05-12 08:02
grid.pyc
1.25
KB
-rw-r--r--
2025-11-12 17:55
grid.pyo
1.25
KB
-rw-r--r--
2025-11-12 17:55
tixwidgets.py
37.51
KB
-rw-r--r--
2013-05-12 08:02
tixwidgets.pyc
37.7
KB
-rw-r--r--
2025-11-12 17:55
tixwidgets.pyo
37.7
KB
-rw-r--r--
2025-11-12 17:55
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()