/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
contrib/python/future/py2/http/__init__.py
9 строк
335 B
shadchin
Split future on py2/py3
10 окт 2023, 21:17
10 окт 2023, 21:17
8382e72
Код
Авторство
О чём код?
from __future__ import absolute_import import sys if sys.version_info[0] < 3: pass else: raise ImportError('This package should not be accessible on Python 3. ' 'Either you are trying to run from the python-future src folder ' 'or your installation of python-future is corrupted.')