]> granicus.if.org Git - python/commitdiff
Using reversed() is not compatible with Python 1.5.2.
authorGuido van Rossum <guido@python.org>
Tue, 4 May 2004 18:18:59 +0000 (18:18 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 4 May 2004 18:18:59 +0000 (18:18 +0000)
Lib/platform.py

index 573debe8d332b6977a74e6b94c13e8fa84f32318..d984402cbe96ab6503c8cc93180f7b13c857992e 100755 (executable)
@@ -202,7 +202,7 @@ def _dist_try_harder(distname,version,id):
     if os.path.isdir('/usr/lib/setup'):
         # Check for slackware verson tag file (thanks to Greg Andruk)
         verfiles = os.listdir('/usr/lib/setup')
-        for n in reversed(xrange(len(verfiles))):
+        for n in range(len(verfiles)-1, -1, -1):
             if verfiles[n][:14] != 'slack-version-':
                 del verfiles[n]
         if verfiles: