[Python-checkins] CVS: python/dist/src/Lib urllib.py,1.135,1.136
Neal Norwitz
nnorwitz@users.sourceforge.net
Mon, 11 Feb 2002 10:06:23 -0800
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv8247
Modified Files:
urllib.py
Log Message:
SF #515024 remove unused variable
Index: urllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/urllib.py,v
retrieving revision 1.135
retrieving revision 1.136
diff -C2 -d -r1.135 -r1.136
*** urllib.py 8 Dec 2001 17:09:07 -0000 1.135
--- urllib.py 11 Feb 2002 18:06:21 -0000 1.136
***************
*** 1159,1163 ****
try:
# non-sequence items should not work with len()
- x = len(query)
# non-empty strings will fail this
if len(query) and type(query[0]) != types.TupleType:
--- 1159,1162 ----