summaryrefslogtreecommitdiff
path: root/Lib/SimpleHTTPServer.py
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-02-09 10:18:37 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-02-09 10:18:37 +0000
commit68845bd9d54c275d4633b4017b407f64f264f7b3 (patch)
tree63e3eb08fec037804eb49a166665cc799576710d /Lib/SimpleHTTPServer.py
parent09cc8f7935da52458b5c6456c9e09e14326769ee (diff)
downloadcpython-68845bd9d54c275d4633b4017b407f64f264f7b3.tar.gz
String method conversion.
Diffstat (limited to 'Lib/SimpleHTTPServer.py')
-rw-r--r--Lib/SimpleHTTPServer.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/Lib/SimpleHTTPServer.py b/Lib/SimpleHTTPServer.py
index 9c87e66c2c..01a6097639 100644
--- a/Lib/SimpleHTTPServer.py
+++ b/Lib/SimpleHTTPServer.py
@@ -11,7 +11,6 @@ __version__ = "0.6"
__all__ = ["SimpleHTTPRequestHandler"]
import os
-import string
import posixpath
import BaseHTTPServer
import urllib
@@ -131,7 +130,7 @@ class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
"""
path = posixpath.normpath(urllib.unquote(path))
- words = string.splitfields(path, '/')
+ words = path.splitfields('/')
words = filter(None, words)
path = os.getcwd()
for word in words:
@@ -175,7 +174,7 @@ class SimpleHTTPRequestHandler(BaseHTTPServer.BaseHTTPRequestHandler):
base, ext = posixpath.splitext(path)
if self.extensions_map.has_key(ext):
return self.extensions_map[ext]
- ext = string.lower(ext)
+ ext = ext.lower()
if self.extensions_map.has_key(ext):
return self.extensions_map[ext]
else: