/
valemobil
/
python-future
Обзор
Документация
Войти
/
valemobil
/
python-future
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/future/moves/tkinter/ttk.py
12 строк
302 B
Jon Dufresne
Trim trailing white space throughout the project
10 сен 2018, 23:58
10 сен 2018, 23:58
99cd678
Код
Авторство
О чём код?
from __future__ import absolute_import from future.utils import PY3 if PY3: from tkinter.ttk import * else: try: from ttk import * except ImportError: raise ImportError('The ttk module is missing. Does your Py2 ' 'installation include tkinter?')