/
valemobil
/
python-future
Обзор
Документация
Войти
/
valemobil
/
python-future
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v0.15.0
src/tkinter/dnd.py
12 строк
307 B
Ed Schofield
Move all source code to src/
01 окт 2014, 03:11
01 окт 2014, 03:11
38ea63a
Код
Авторство
О чём код?
from __future__ import absolute_import from future.utils import PY3 if PY3: from tkinter.dnd import * else: try: from Tkdnd import * except ImportError: raise ImportError('The Tkdnd module is missing. Does your Py2 ' 'installation include tkinter?')