OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
future
/
moves
/
tkinter
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
07/12/2020 04:36:17 PM
rwxr-xr-x
📄
__init__.py
164 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📁
__pycache__
-
07/12/2020 04:36:18 PM
rwxr-xr-x
📄
colorchooser.py
334 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
commondialog.py
334 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
constants.py
325 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
dialog.py
312 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
dnd.py
307 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
filedialog.py
324 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
font.py
310 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
messagebox.py
328 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
scrolledtext.py
330 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
simpledialog.py
330 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
tix.py
303 bytes
11/21/2014 11:52:03 AM
rw-r--r--
📄
ttk.py
303 bytes
07/25/2015 10:34:42 AM
rw-r--r--
Editing: commondialog.py
Close
from __future__ import absolute_import from future.utils import PY3 if PY3: from tkinter.commondialog import * else: try: from tkCommonDialog import * except ImportError: raise ImportError('The tkCommonDialog module is missing. Does your Py2 ' 'installation include tkinter?')