This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mike_j_brown
Recipients
Date 2004-03-31.06:01:57
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=371366

As per the urlencode() API documentation, you are passing in 
sequences, so you need to set the doseq flag.

>>> urllib.urlencode(cgi.parse_qs
('ext=.jpg&outquality=56'),doseq=1)
'ext=.jpg&outquality=56'

I recommend that this bug report be closed as Invalid.
History
Date User Action Args
2007-08-23 14:17:58adminlinkissue833405 messages
2007-08-23 14:17:58admincreate