summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-01 19:07:28 (GMT)
committerGeorg Brandl <georg@python.org>2010-08-01 19:07:28 (GMT)
commitcaa78fee030f5a832141570ff2b56367059a3ce9 (patch)
tree06d1d6be17495d5d5de343c16a87e4f203ec33ac
parent44c58236d748b3301b0bc6057f8a93d8eeb2ab3c (diff)
downloadcpython-caa78fee030f5a832141570ff2b56367059a3ce9.zip
cpython-caa78fee030f5a832141570ff2b56367059a3ce9.tar.gz
cpython-caa78fee030f5a832141570ff2b56367059a3ce9.tar.bz2
Merged revisions 83371,83390 via svnmerge from
svn+ssh://svn.python.org/python/branches/py3k ........ r83371 | georg.brandl | 2010-07-31 23:54:24 +0200 (Sa, 31 Jul 2010) | 1 line #8292: Fix three instances of truth tests on return values of filter() (which is always true in Python 3). ........ r83390 | georg.brandl | 2010-08-01 10:07:49 +0200 (So, 01 Aug 2010) | 1 line #8230: make Lib/test/sortperf.py run on Python 3. ........
-rw-r--r--Lib/distutils/command/sdist.py3
-rw-r--r--Lib/http/server.py5
-rwxr-xr-xLib/platform.py2
-rw-r--r--Lib/test/sortperf.py8
-rw-r--r--Misc/NEWS2
5 files changed, 11 insertions, 9 deletions
diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py
index bb21061..f51d72f 100644
--- a/Lib/distutils/command/sdist.py
+++ b/Lib/distutils/command/sdist.py
@@ -240,8 +240,7 @@ class sdist(Command):
optional = ['test/test*.py', 'setup.cfg']
for pattern in optional:
files = filter(os.path.isfile, glob(pattern))
- if files:
- self.filelist.extend(files)
+ self.filelist.extend(files)
# build_py is used to get:
# - python modules
diff --git a/Lib/http/server.py b/Lib/http/server.py
index f6f788f..930831c 100644
--- a/Lib/http/server.py
+++ b/Lib/http/server.py
@@ -1015,8 +1015,9 @@ class CGIHTTPRequestHandler(SimpleHTTPRequestHandler):
if ua:
env['HTTP_USER_AGENT'] = ua
co = filter(None, self.headers.get_all('cookie', []))
- if co:
- env['HTTP_COOKIE'] = ', '.join(co)
+ cookie_str = ', '.join(co)
+ if cookie_str:
+ env['HTTP_COOKIE'] = cookie_str
# XXX Other HTTP_* headers
# Since we're setting the env in the parent, provide empty
# values to override previously set values
diff --git a/Lib/platform.py b/Lib/platform.py
index 64025a3..4e53f42 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -1109,7 +1109,7 @@ def uname():
except AttributeError:
no_os_uname = 1
- if no_os_uname or not filter(None, (system, node, release, version, machine)):
+ if no_os_uname or not list(filter(None, (system, node, release, version, machine))):
# Hmm, no there is either no uname or uname has returned
#'unknowns'... we'll have to poke around the system then.
if no_os_uname:
diff --git a/Lib/test/sortperf.py b/Lib/test/sortperf.py
index 44fc1b0..0ce88de 100644
--- a/Lib/test/sortperf.py
+++ b/Lib/test/sortperf.py
@@ -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()
diff --git a/Misc/NEWS b/Misc/NEWS
index 3f186a6..5bbbd3d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -84,6 +84,8 @@ C-API
Library
-------
+- Issue #8230: Fix Lib/test/sortperf.py.
+
- Issue #7395: Fix tracebacks in pstats interactive browser.
- Issue #1713: Fix os.path.ismount(), which returned true for symbolic links