From 3e4424848350484e4d14794e8af27f63f07b19ca Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Mon, 13 Aug 2001 14:38:50 +0000 Subject: [PATCH] Remove unused variable --- Lib/urlparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 1df83d68d3..49c7bc87e0 100644 --- a/Lib/urlparse.py +++ b/Lib/urlparse.py @@ -55,7 +55,7 @@ def urlparse(url, scheme = '', allow_fragments = 1): return cached if len(_parse_cache) >= MAX_CACHE_SIZE: # avoid runaway growth clear_cache() - netloc = path = params = query = fragment = '' + netloc = params = query = fragment = '' i = url.find(':') if i > 0: if url[:i] == 'http': # optimize the common case -- 2.40.0