<?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 string objects implementation</title>
	<atom:link href="http://www.laurentluce.com/posts/python-string-objects-implementation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.laurentluce.com/posts/python-string-objects-implementation/</link>
	<description>Technical blog on web technologies</description>
	<lastBuildDate>Sat, 08 Jun 2013 15:02:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Laurent Luce</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-10676</link>
		<dc:creator>Laurent Luce</dc:creator>
		<pubDate>Sat, 14 Jan 2012 18:55:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-10676</guid>
		<description><![CDATA[@pythonee I used Dia.]]></description>
		<content:encoded><![CDATA[<p>@pythonee I used Dia.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pythonee</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-10568</link>
		<dc:creator>pythonee</dc:creator>
		<pubDate>Thu, 12 Jan 2012 21:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-10568</guid>
		<description><![CDATA[How did you draw the diagram]]></description>
		<content:encoded><![CDATA[<p>How did you draw the diagram</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Luce</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-5852</link>
		<dc:creator>Laurent Luce</dc:creator>
		<pubDate>Sat, 03 Sep 2011 19:19:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-5852</guid>
		<description><![CDATA[Thanks for the references. Great article by the way!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the references. Great article by the way!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pepr</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-5567</link>
		<dc:creator>pepr</dc:creator>
		<pubDate>Fri, 19 Aug 2011 16:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-5567</guid>
		<description><![CDATA[Hi Laurent,

I was searching for any illustrative pages that describe implementation of integers, dictionaries, and strings. I have found your pages to be interesting.  I have included the URL&#039;s to my article at http://www.experts-exchange.com/Programming/Languages/Scripting/Python/A_7109-Python-basics-illustrated-part-3.html as references to more detailed description.  At the time, the article is not visible, yet (waiting for verification).

Thanks for you work :)

Petr]]></description>
		<content:encoded><![CDATA[<p>Hi Laurent,</p>
<p>I was searching for any illustrative pages that describe implementation of integers, dictionaries, and strings. I have found your pages to be interesting.  I have included the URL&#8217;s to my article at <a href="http://www.experts-exchange.com/Programming/Languages/Scripting/Python/A_7109-Python-basics-illustrated-part-3.html" rel="nofollow">http://www.experts-exchange.com/Programming/Languages/Scripting/Python/A_7109-Python-basics-illustrated-part-3.html</a> as references to more detailed description.  At the time, the article is not visible, yet (waiting for verification).</p>
<p>Thanks for you work <img src='http://www.laurentluce.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Petr</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Luce</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-4535</link>
		<dc:creator>Laurent Luce</dc:creator>
		<pubDate>Wed, 22 Jun 2011 19:56:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-4535</guid>
		<description><![CDATA[@Brent: Thanks. I changed it.]]></description>
		<content:encoded><![CDATA[<p>@Brent: Thanks. I changed it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Laurent Luce</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-4534</link>
		<dc:creator>Laurent Luce</dc:creator>
		<pubDate>Wed, 22 Jun 2011 19:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-4534</guid>
		<description><![CDATA[@Mike: Thanks. I changed it.]]></description>
		<content:encoded><![CDATA[<p>@Mike: Thanks. I changed it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Müller</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-4478</link>
		<dc:creator>Mike Müller</dc:creator>
		<pubDate>Mon, 20 Jun 2011 12:46:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-4478</guid>
		<description><![CDATA[The very first sentence:

&quot;An integer object in Python is represented internally by the structure PyStringObject.&quot;

should probably use &quot;string&quot; instead of &quot;integer&quot;:

&quot;A string object in Python is represented internally by the structure PyStringObject.&quot;]]></description>
		<content:encoded><![CDATA[<p>The very first sentence:</p>
<p>&#8220;An integer object in Python is represented internally by the structure PyStringObject.&#8221;</p>
<p>should probably use &#8220;string&#8221; instead of &#8220;integer&#8221;:</p>
<p>&#8220;A string object in Python is represented internally by the structure PyStringObject.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brent Benson</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-4477</link>
		<dc:creator>Brent Benson</dc:creator>
		<pubDate>Mon, 20 Jun 2011 11:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-4477</guid>
		<description><![CDATA[Not a big deal, but the first sentence should begin with &quot;A string object in Python is represented internally by&quot; rather than &quot;An integer object in Python is represented internally by.&quot;]]></description>
		<content:encoded><![CDATA[<p>Not a big deal, but the first sentence should begin with &#8220;A string object in Python is represented internally by&#8221; rather than &#8220;An integer object in Python is represented internally by.&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: meisterluk</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-4475</link>
		<dc:creator>meisterluk</dc:creator>
		<pubDate>Mon, 20 Jun 2011 08:52:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-4475</guid>
		<description><![CDATA[Great article. python and good algorithms ftw! Thanks! :-)]]></description>
		<content:encoded><![CDATA[<p>Great article. python and good algorithms ftw! Thanks! <img src='http://www.laurentluce.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alain</title>
		<link>http://www.laurentluce.com/posts/python-string-objects-implementation/comment-page-1/#comment-4473</link>
		<dc:creator>alain</dc:creator>
		<pubDate>Mon, 20 Jun 2011 08:33:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.laurentluce.com/?p=307#comment-4473</guid>
		<description><![CDATA[Very interesting, I&#039;ll take that into my mind while coding with string !]]></description>
		<content:encoded><![CDATA[<p>Very interesting, I&#8217;ll take that into my mind while coding with string !</p>
]]></content:encoded>
	</item>
</channel>
</rss>
