Jeff Epler <[EMAIL PROTECTED]> writes:

>     items = query_param.items()
>     keys = [item[0] for item in items]
>     values = [item[1] for item in items]

Is there some reason not to do:

   keys = query_params.keys()
   values = query_params.values()

That would seem to be a lot more obvious as to what was going on.

     Thanks,
     <mike
-- 
Mike Meyer <[EMAIL PROTECTED]>                  http://www.mired.org/home/mwm/
Independent WWW/Perforce/FreeBSD/Unix consultant, email for more information.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to