Add back six.moves.range (Python 3) (#4481)

This was accidentally removed in #4287.
This commit is contained in:
Jukka Lehtosalo
2020-08-25 16:42:15 +01:00
committed by GitHub
parent 770fe90b0b
commit ab0f5519a9

View File

@@ -2,7 +2,7 @@
#
# Note: Commented out items means they weren't implemented at the time.
# Uncomment them when the modules have been added to the typeshed.
from builtins import filter as filter, input as input, map as map, range as xrange, zip as zip
from builtins import filter as filter, input as input, map as map, range as range, range as xrange, zip as zip
from collections import UserDict as UserDict, UserList as UserList, UserString as UserString
from functools import reduce as reduce
from importlib import reload as reload_module