From a6053d54f1178dc527b383844972c6077ee91a4e Mon Sep 17 00:00:00 2001 From: Sarah Owens Date: Thu, 1 Nov 2012 13:36:50 -0700 Subject: Change usages of xrange() to range() In Python3, range() creates a generator rather than a list. None of the parameters in the ranges changed looked large enough to create an impact in memory in Python2. Note: the only use of range() was for iteration and did not need to be changed. This is part of a series of changes to introduce Python3 support. Change-Id: I50b665f9296ea160a5076c71f36a65f76e47029f --- repo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'repo') diff --git a/repo b/repo index 1b809087..80eff8ff 100755 --- a/repo +++ b/repo @@ -606,7 +606,7 @@ def _ParseArguments(args): opt = _Options() arg = [] - for i in xrange(0, len(args)): + for i in range(len(args)): a = args[i] if a == '-h' or a == '--help': opt.help = True -- cgit v1.2.3-54-g00ecf