I can't get in to the Python bug tracker right now (its promised registration email has not arrived), so I post this here in the meantime. (Update: Finally got the email. Bug filed with patch as
#3801.)
The code: import cgi; cgi.parse_qsl('a=1&b=2&b=3')
The result in Python 2.5: [('a', '1'), ('b', '2'), ('b', '3')]The result in Python 2.6b3+ (
(
Read more... )