From ab0f5519a97021426ed20831cb0ef2dad7004438 Mon Sep 17 00:00:00 2001 From: Jukka Lehtosalo Date: Tue, 25 Aug 2020 16:42:15 +0100 Subject: [PATCH] Add back six.moves.range (Python 3) (#4481) This was accidentally removed in #4287. --- third_party/3/six/moves/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/3/six/moves/__init__.pyi b/third_party/3/six/moves/__init__.pyi index 991e368e0..e722266ba 100644 --- a/third_party/3/six/moves/__init__.pyi +++ b/third_party/3/six/moves/__init__.pyi @@ -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