second commit
This commit is contained in:
12
env/lib/python3.11/site-packages/future/moves/tkinter/commondialog.py
vendored
Normal file
12
env/lib/python3.11/site-packages/future/moves/tkinter/commondialog.py
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
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?')
|
Reference in New Issue
Block a user