Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.35
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Lib /
tkinter /
Delete
Unzip
Name
Size
Permission
Date
Action
test
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
__init__.py
166.79
KB
-rw-r--r--
2024-03-19 22:46
__main__.py
148
B
-rw-r--r--
2024-03-19 22:46
colorchooser.py
2.6
KB
-rw-r--r--
2024-03-19 22:46
commondialog.py
1.27
KB
-rw-r--r--
2024-03-19 22:46
constants.py
1.46
KB
-rw-r--r--
2024-03-19 22:46
dialog.py
1.5
KB
-rw-r--r--
2024-03-19 22:46
dnd.py
11.37
KB
-rw-r--r--
2024-03-19 22:46
filedialog.py
14.6
KB
-rw-r--r--
2024-03-19 22:46
font.py
6.84
KB
-rw-r--r--
2024-03-19 22:46
messagebox.py
3.77
KB
-rw-r--r--
2024-03-19 22:46
scrolledtext.py
1.77
KB
-rw-r--r--
2024-03-19 22:46
simpledialog.py
11.48
KB
-rw-r--r--
2024-03-19 22:46
tix.py
75.23
KB
-rw-r--r--
2024-03-19 22:46
ttk.py
55.81
KB
-rw-r--r--
2024-03-19 22:46
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__' self._setup(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()