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.204
Domains :
Cant Read [ /etc/named.conf ]
User : klinikpe
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
mysqlsh /
lib /
python3.9 /
tkinter /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2026-05-04 18:20
__init__.py
165.65
KB
-rw-r--r--
2025-11-21 11:14
__main__.py
148
B
-rw-r--r--
2025-11-21 11:14
colorchooser.py
2.6
KB
-rw-r--r--
2025-11-21 11:14
commondialog.py
1.22
KB
-rw-r--r--
2025-11-21 11:14
constants.py
1.46
KB
-rw-r--r--
2025-11-21 11:14
dialog.py
1.51
KB
-rw-r--r--
2025-11-21 11:14
dnd.py
11.26
KB
-rw-r--r--
2025-11-21 11:14
filedialog.py
14.6
KB
-rw-r--r--
2025-11-21 11:14
font.py
6.66
KB
-rw-r--r--
2025-11-21 11:14
messagebox.py
3.77
KB
-rw-r--r--
2025-11-21 11:14
scrolledtext.py
1.77
KB
-rw-r--r--
2025-11-21 11:14
simpledialog.py
11.48
KB
-rw-r--r--
2025-11-21 11:14
tix.py
75.04
KB
-rw-r--r--
2025-11-21 11:14
ttk.py
55.8
KB
-rw-r--r--
2025-11-21 11:14
Save
Rename
# dialog.py -- Tkinter interface to the tk_dialog script. from tkinter import _cnfmerge, Widget, TclError, Button, Pack __all__ = ["Dialog"] 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()