To me, at least.<br><br>>>> urllib.unquote("content%28type%3D%2527Car%2527%29")<br>'content(type=%27Car%27)'<br>>>> urllib.unquote('content(type=%27Car%27)')<br>"content(type='Car')"<br>
<br>The quoted string is coming from a URL parameter parsed in a Google App Engine request handler.<br><br>So right now I have to apply unquote() twice in order to get the correct result.<br><br>Any clue much appreciated.<br>
<br>--Jonas Galvez<br>