diff options
author | Guido van Rossum <guido@python.org> | 1999-05-03 18:16:23 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-05-03 18:16:23 (GMT) |
commit | 4f13669cf0d348d521dda039cc7ff9fbef8dea40 (patch) | |
tree | b48f8e623658d62124928fe81e39d51f54b1b7cf /Lib/urlparse.py | |
parent | 73898c7b159f898cffff1c5cfc529a10a38e0011 (diff) | |
download | cpython-4f13669cf0d348d521dda039cc7ff9fbef8dea40.zip cpython-4f13669cf0d348d521dda039cc7ff9fbef8dea40.tar.gz cpython-4f13669cf0d348d521dda039cc7ff9fbef8dea40.tar.bz2 |
No need to import find(). (Andrew Dalke & kjpylint)
Diffstat (limited to 'Lib/urlparse.py')
-rw-r--r-- | Lib/urlparse.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 4552e6e..dfea52d 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', |