<?xml version="1.0" encoding="utf-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Python Url Encoding</title>
	<atom:link href="http://blog.affien.com/archives/2005/06/25/python-url-encoding/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.affien.com/archives/2005/06/25/python-url-encoding/</link>
	<description>A few thoughts</description>
	<pubDate>Tue, 06 Jan 2009 11:54:31 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Peter Wesselius</title>
		<link>http://blog.affien.com/archives/2005/06/25/python-url-encoding/comment-page-1/#comment-150122</link>
		<dc:creator>Peter Wesselius</dc:creator>
		<pubDate>Thu, 09 Aug 2007 09:27:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.w-nz.com/?p=102#comment-150122</guid>
		<description>Your UrlEncode function can be refactored:

def UrlEncode(s):
    r = ''
    for c in s:
        if c in HexCharacters:
            o = ord(c)
            r += '%' + CleanCharHex(c)
        else:
            r += c
    return r</description>
		<content:encoded><![CDATA[<p>Your UrlEncode function can be refactored:</p>
<p>def UrlEncode(s):<br />
    r = &#8221;<br />
    for c in s:<br />
        if c in HexCharacters:<br />
            o = ord(c)<br />
            r += &#8216;%&#8217; + CleanCharHex(c)<br />
        else:<br />
            r += c<br />
    return r</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bas Westerbaan</title>
		<link>http://blog.affien.com/archives/2005/06/25/python-url-encoding/comment-page-1/#comment-918</link>
		<dc:creator>Bas Westerbaan</dc:creator>
		<pubDate>Tue, 19 Jul 2005 11:51:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.w-nz.com/?p=102#comment-918</guid>
		<description>Thanks! Seems I missed that one. I guess the name 'quote' was picked a bit awquardly.</description>
		<content:encoded><![CDATA[<p>Thanks! Seems I missed that one. I guess the name &#8216;quote&#8217; was picked a bit awquardly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://blog.affien.com/archives/2005/06/25/python-url-encoding/comment-page-1/#comment-917</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Tue, 19 Jul 2005 10:46:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.w-nz.com/?p=102#comment-917</guid>
		<description>Try the quote public method in the urllib module.</description>
		<content:encoded><![CDATA[<p>Try the quote public method in the urllib module.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
