Clarify comment.

This commit is contained in:
Itamar Turner-Trauring 2020-09-21 10:35:56 -04:00
parent 8ef2252bd4
commit a4da6c3dbe

View File

@ -13,7 +13,8 @@ from __future__ import unicode_literals
from future.utils import PY2
if PY2:
# Don't import bytes or str, to prevent leaks.
# Don't import bytes or str, to prevent future's newbytes leaking and
# breaking code that only expects normal bytes.
from future.builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, dict, list, object, range, max, min # noqa: F401
str = unicode