Drop int.

This commit is contained in:
Itamar Turner-Trauring 2020-08-06 16:12:26 -04:00
parent b8df17283b
commit 9669e4eaa7

View File

@ -13,7 +13,7 @@ if PY2:
# IMPORTANT: We deliberately don't import dict. The issue is that we're
# subclassing dict, so we'd end up exposing Python 3 dict APIs to lots of
# code that doesn't support it.
from builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, bytes, int, list, object, range, str, max, min # noqa: F401
from builtins import filter, map, zip, ascii, chr, hex, input, next, oct, open, pow, round, super, bytes, list, object, range, str, max, min # noqa: F401
class DictOfSets(dict):