From: Guido van Rossum Date: Wed, 4 Sep 1996 23:42:04 +0000 (+0000) Subject: Get rid of nobody_uid() and import pwd -- not used here. X-Git-Tag: v1.4~306 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f469d5b05d68411d693e0af06dab7d6870a609da;p=thirdparty%2FPython%2Fcpython.git Get rid of nobody_uid() and import pwd -- not used here. --- diff --git a/Lib/SimpleHTTPServer.py b/Lib/SimpleHTTPServer.py index dd3107abc6fa..ac3e38411593 100644 --- a/Lib/SimpleHTTPServer.py +++ b/Lib/SimpleHTTPServer.py @@ -10,7 +10,6 @@ __version__ = "0.3" import os -import pwd import sys import time import socket @@ -20,17 +19,6 @@ import SocketServer import BaseHTTPServer -def nobody_uid(): - """Internal routine to get nobody's uid""" - try: - nobody = pwd.getpwnam('nobody')[2] - except pwd.error: - nobody = 1 + max(map(lambda x: x[2], pwd.getpwall())) - return nobody - -nobody = nobody_uid() - - class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler): """Simple HTTP request handler with GET and HEAD commands.