<?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/"
		xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
	>
<channel>
	<title>Comments on: # Iterators</title>
	<atom:link href="http://www.pointlessrants.com/2009/02/iterators/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.pointlessrants.com/2009/02/iterators/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=iterators</link>
	<description>Rants that are usually about technology</description>
	<lastBuildDate>Wed, 01 Feb 2012 13:18:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Eric Shull</title>
		<link>http://www.pointlessrants.com/2009/02/iterators/comment-page-1/#comment-569</link>
		<dc:creator>Eric Shull</dc:creator>
		<pubDate>Sun, 01 Mar 2009 13:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.daspecster.com/?p=186#comment-569</guid>
		<description>Fixed. Thanks.</description>
		<content:encoded><![CDATA[<p>Fixed. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve Oxley</title>
		<link>http://www.pointlessrants.com/2009/02/iterators/comment-page-1/#comment-546</link>
		<dc:creator>Steve Oxley</dc:creator>
		<pubDate>Sun, 01 Mar 2009 05:16:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.daspecster.com/?p=186#comment-546</guid>
		<description>In this example:
&lt;pre&gt;
&lt;code&gt;
    def next(self):
        self._k += 1
        self._k %= len(self._color_list)
        return self._color_list[k]
&lt;/code&gt;
&lt;/pre&gt;
Shouldn&#039;t the line 
&lt;code&gt;return self._color_list[k]&lt;/code&gt;
be
&lt;code&gt;return self._color_list[self._k]&lt;/code&gt;
instead?</description>
		<content:encoded><![CDATA[<p>In this example:</p>
<pre>
<code>
    def next(self):
        self._k += 1
        self._k %= len(self._color_list)
        return self._color_list[k]
</code>
</pre>
<p>Shouldn&#8217;t the line<br />
<code>return self._color_list[k]</code><br />
be<br />
<code>return self._color_list[self._k]</code><br />
instead?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

