#1513299: cleanup some map() uses where a comprehension works better.
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 @@
     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