/
valemobil
/
python-future
Обзор
Документация
Войти
/
valemobil
/
python-future
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
docs/dev_notes.rst
16 строк
507 B
Jon Dufresne
Undocument support for EOL Python 2.6 and 3.3
18 сен 2018, 01:35
18 сен 2018, 01:35
37d1d12
Код
Авторство
О чём код?
Notes ----- This module only supports Python 2.7, and Python 3.4+. The following renames are already supported on Python 2.7 without any additional work from us:: reload() -> imp.reload() reduce() -> functools.reduce() StringIO.StringIO -> io.StringIO Bytes.BytesIO -> io.BytesIO Old things that can one day be fixed automatically by futurize.py:: string.uppercase -> string.ascii_uppercase # works on either Py2.7 or Py3+ sys.maxint -> sys.maxsize # but this isn't identical