9 lines
164 B
Python
9 lines
164 B
Python
from __future__ import absolute_import
|
|
from future.utils import PY3
|
|
__future_module__ = True
|
|
|
|
if not PY3:
|
|
from Tkinter import *
|
|
else:
|
|
from tkinter import *
|