]> granicus.if.org Git - python/commitdiff
#8230: make Lib/test/sortperf.py run on Python 3.
authorGeorg Brandl <georg@python.org>
Sun, 1 Aug 2010 08:07:49 +0000 (08:07 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 1 Aug 2010 08:07:49 +0000 (08:07 +0000)
Lib/test/sortperf.py
Misc/NEWS

index 44fc1b0acf71d25cd7ff63b478bb1a4b71fe99e0..0ce88de4c1683ee3435bf02b3c8a91f389cd6ca2 100644 (file)
@@ -118,12 +118,12 @@ def tabulate(r):
             L = L * (n // 4)
             # Force the elements to be distinct objects, else timings can be
             # artificially low.
-            L = map(lambda x: --x, L)
+            L = list(map(lambda x: --x, L))
         doit(L) # ~sort
         del L
 
         # All equal.  Again, force the elements to be distinct objects.
-        L = map(abs, [-0.5] * n)
+        L = list(map(abs, [-0.5] * n))
         doit(L) # =sort
         del L
 
@@ -131,11 +131,11 @@ def tabulate(r):
         # for an older implementation of quicksort, which used the median
         # of the first, last and middle elements as the pivot.
         half = n // 2
-        L = range(half - 1, -1, -1)
+        L = list(range(half - 1, -1, -1))
         L.extend(range(half))
         # Force to float, so that the timings are comparable.  This is
         # significantly faster if we leave tham as ints.
-        L = map(float, L)
+        L = list(map(float, L))
         doit(L) # !sort
         print()
 
index fd47e9608b176b2f0e233e673b711bb658c115db..23cc3ebc099c2410cab06d461ae65b259528124a 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #8230: Fix Lib/test/sortperf.py.
+
 - Issue #8620: when a Cmd is fed input that reaches EOF without a final
   newline, it no longer truncates the last character of the last command line.