summaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
authorSarah Owens <sarato@inkylabs.com>2012-11-01 13:36:50 -0700
committerSarah Owens <sarato@inkylabs.com>2012-11-01 13:36:50 -0700
commita6053d54f1178dc527b383844972c6077ee91a4e (patch)
tree24038d692a1db41c400c9d40da9ac6b5ccfaaa7a /main.py
parente072a92a9bb9fdf61bbd1df4e8864f8fd52d5a82 (diff)
downloadgit-repo-a6053d54f1178dc527b383844972c6077ee91a4e.tar.gz
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
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.py b/main.py
index 10e1cf8c..14a57618 100755
--- a/main.py
+++ b/main.py
@@ -87,7 +87,7 @@ class _Repo(object):
87 name = None 87 name = None
88 glob = [] 88 glob = []
89 89
90 for i in xrange(0, len(argv)): 90 for i in range(len(argv)):
91 if not argv[i].startswith('-'): 91 if not argv[i].startswith('-'):
92 name = argv[i] 92 name = argv[i]
93 if i > 0: 93 if i > 0: