From: Andrew M. Kuchling Date: Mon, 13 Aug 2001 14:38:50 +0000 (+0000) Subject: Remove unused variable X-Git-Tag: v2.2a3~603 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3e4424848350484e4d14794e8af27f63f07b19ca;p=thirdparty%2FPython%2Fcpython.git Remove unused variable --- diff --git a/Lib/urlparse.py b/Lib/urlparse.py index 1df83d68d31b..49c7bc87e071 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