Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.217.130
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
python33 /
lib64 /
python3.3 /
tkinter /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-05-01 04:20
test
[ DIR ]
drwxr-xr-x
2026-05-01 04:20
__init__.py
159.41
KB
-rw-r--r--
2024-04-17 20:28
__main__.py
148
B
-rw-r--r--
2024-04-17 20:28
_fix.py
2.83
KB
-rw-r--r--
2024-04-17 20:28
colorchooser.py
1.75
KB
-rw-r--r--
2024-04-17 20:28
commondialog.py
1.38
KB
-rw-r--r--
2024-04-17 20:28
constants.py
1.46
KB
-rw-r--r--
2024-04-17 20:28
dialog.py
1.53
KB
-rw-r--r--
2024-04-17 20:28
dnd.py
11.22
KB
-rw-r--r--
2024-04-17 20:28
filedialog.py
14.16
KB
-rw-r--r--
2024-04-17 20:28
font.py
6.47
KB
-rw-r--r--
2024-04-17 20:28
messagebox.py
3.61
KB
-rw-r--r--
2024-04-17 20:28
scrolledtext.py
1.77
KB
-rw-r--r--
2024-04-17 20:28
simpledialog.py
11.14
KB
-rw-r--r--
2024-04-17 20:28
tix.py
75.23
KB
-rw-r--r--
2024-04-17 20:28
ttk.py
54.86
KB
-rw-r--r--
2024-04-17 20:28
Save
Rename
# dialog.py -- Tkinter interface to the tk_dialog script. from tkinter import * from tkinter import _cnfmerge if TkVersion <= 3.6: DIALOG_ICON = 'warning' else: DIALOG_ICON = 'questhead' class Dialog(Widget): def __init__(self, master=None, cnf={}, **kw): cnf = _cnfmerge((cnf, kw)) self.widgetName = '__dialog__' Widget._setup(self, master, cnf) self.num = self.tk.getint( self.tk.call( 'tk_dialog', self._w, cnf['title'], cnf['text'], cnf['bitmap'], cnf['default'], *cnf['strings'])) try: Widget.destroy(self) except TclError: pass def destroy(self): pass def _test(): d = Dialog(None, {'title': 'File Modified', 'text': 'File "Python.h" has been modified' ' since the last time it was saved.' ' Do you want to save it before' ' exiting the application.', 'bitmap': DIALOG_ICON, 'default': 0, 'strings': ('Save File', 'Discard Changes', 'Return to Editor')}) print(d.num) if __name__ == '__main__': t = Button(None, {'text': 'Test', 'command': _test, Pack: {}}) q = Button(None, {'text': 'Quit', 'command': t.quit, Pack: {}}) t.mainloop()