summaryrefslogtreecommitdiffstats
path: root/Lib/http
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-12-04 10:39:14 (GMT)
committerGeorg Brandl <georg@python.org>2010-12-04 10:39:14 (GMT)
commitcbd2ab1311120efa37e6dd8008a234235bf97b62 (patch)
treeaa1fbd5bf7fc5d236956c4b73cbbd407b9612349 /Lib/http
parent8334fd9285a8e9f0864b0453ae738fe3f6893b21 (diff)
downloadcpython-cbd2ab1311120efa37e6dd8008a234235bf97b62.zip
cpython-cbd2ab1311120efa37e6dd8008a234235bf97b62.tar.gz
cpython-cbd2ab1311120efa37e6dd8008a234235bf97b62.tar.bz2
#1513299: cleanup some map() uses where a comprehension works better.
Diffstat (limited to 'Lib/http')
-rw-r--r--Lib/http/cookies.py2
-rw-r--r--Lib/http/server.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/Lib/http/cookies.py b/Lib/http/cookies.py
index 9e51b67..fb9589c 100644
--- a/Lib/http/cookies.py
+++ b/Lib/http/cookies.py
@@ -230,7 +230,7 @@ def _quote(str, LegalChars=_LegalChars):
if all(c in LegalChars for c in str):
return str
else:
- return '"' + _nulljoin(map(_Translator.get, str, str)) + '"'
+ return '"' + _nulljoin(_Translator.get(s, s) for s in str) + '"'
_OctalPatt = re.compile(r"\\[0-3][0-7][0-7]")
diff --git a/Lib/http/server.py b/Lib/http/server.py
index 5ebfd25..2140710 100644
--- a/Lib/http/server.py
+++ b/Lib/http/server.py
@@ -868,7 +868,7 @@ def nobody_uid():
try:
nobody = pwd.getpwnam('nobody')[2]
except KeyError:
- nobody = 1 + max(map(lambda x: x[2], pwd.getpwall()))
+ nobody = 1 + max(x[2] for x in pwd.getpwall())
return nobody