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 /
lib /
python3.5 /
tkinter /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2022-03-20 10:37
__init__.py
158.78
KB
-rw-r--r--
2021-11-04 16:29
__main__.py
148
B
-rw-r--r--
2021-11-04 16:29
colorchooser.py
1.75
KB
-rw-r--r--
2021-11-04 16:29
commondialog.py
1.38
KB
-rw-r--r--
2021-11-04 16:29
constants.py
1.46
KB
-rw-r--r--
2021-11-04 16:29
dialog.py
1.53
KB
-rw-r--r--
2021-11-04 16:29
dnd.py
11.22
KB
-rw-r--r--
2021-11-04 16:29
filedialog.py
14.16
KB
-rw-r--r--
2021-11-04 16:29
font.py
6.43
KB
-rw-r--r--
2021-11-04 16:29
messagebox.py
3.61
KB
-rw-r--r--
2021-11-04 16:29
scrolledtext.py
1.77
KB
-rw-r--r--
2021-11-04 16:29
simpledialog.py
11.16
KB
-rw-r--r--
2021-11-04 16:29
tix.py
75.38
KB
-rw-r--r--
2021-11-04 16:29
ttk.py
54.62
KB
-rw-r--r--
2021-11-04 16:29
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()