From: Guido van Rossum Date: Mon, 3 May 1999 18:16:23 +0000 (+0000) Subject: No need to import find(). (Andrew Dalke & kjpylint) X-Git-Tag: v1.6a1~1376 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4f13669cf0d348d521dda039cc7ff9fbef8dea40;p=python No need to import find(). (Andrew Dalke & kjpylint) --- diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 4552e6e5f3..dfea52d19c 100644 --- a/Lib/urlparse.py +++ b/Lib/urlparse.py @@ -3,7 +3,7 @@ # Standard/builtin Python modules import string -from string import joinfields, splitfields, find, rfind +from string import joinfields, splitfields, rfind # A classification of schemes ('' means apply by default) uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'wais', 'file',