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 janssen
Recipients a.badger, janssen
Date 2008-09-29.20:47:31
SpamBayes Score 0.002400046
Marked as misclassified No
Message-id <1222721252.49.0.246533765795.issue3991@psf.upfronthosting.co.za>
In-reply-to
Content
As I read RFC 2396,

1.5:  "A URI is a sequence of characters from a very
   limited set, i.e. the letters of the basic Latin alphabet, digits,
   and a few special characters."

2.4:  "Data must be escaped if it does not have a representation using an
   unreserved character; this includes data that does not correspond to
   a printable character of the US-ASCII coded character set, or that
   corresponds to any US-ASCII character that is disallowed, as
   explained below."

So your URL string is invalid.  You need to escape the characters properly.

(RFC 2396 is what the HTTP RFC cites as its authority on URLs.)
History
Date User Action Args
2008-09-29 20:47:32janssensetrecipients: + janssen, a.badger
2008-09-29 20:47:32janssensetmessageid: <1222721252.49.0.246533765795.issue3991@psf.upfronthosting.co.za>
2008-09-29 20:47:31janssenlinkissue3991 messages
2008-09-29 20:47:31janssencreate