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 orsenthil
Recipients ajaksu2, ezio.melotti, georg.brandl, nirs, orsenthil, rwanderley, thomaspinckney3, tlesher
Date 2009-08-09.03:49:14
SpamBayes Score 5.8919227e-08
Marked as misclassified No
Message-id <1249789756.22.0.315246715195.issue2637@psf.upfronthosting.co.za>
In-reply-to
Content
The way to handle this issue would be add these characters 
'%/:=&?~#+!$,;'@()*[]' to always_safe list.

There has been a similar issue in the past Issue918368, tough in a
different context.

And if you see, urllib.urlopen function always passes these values as 
the safe parameter to the quote function,

fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]")

Handling of unicode is a different issue, but for the current report,
this change should suffice.
History
Date User Action Args
2009-08-09 03:49:16orsenthilsetrecipients: + orsenthil, georg.brandl, nirs, ajaksu2, tlesher, ezio.melotti, thomaspinckney3, rwanderley
2009-08-09 03:49:16orsenthilsetmessageid: <1249789756.22.0.315246715195.issue2637@psf.upfronthosting.co.za>
2009-08-09 03:49:14orsenthillinkissue2637 messages
2009-08-09 03:49:14orsenthilcreate