<?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 Recipe: Read CSV/TSV Textfiles and Ignore Comment-lines</title>
	<atom:link href="http://www.mfasold.net/blog/2010/02/python-recipe-read-csvtsv-textfiles-and-ignore-comment-lines/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mfasold.net/blog/2010/02/python-recipe-read-csvtsv-textfiles-and-ignore-comment-lines/</link>
	<description>Just shouting my thoughts out</description>
	<lastBuildDate>Fri, 03 Feb 2012 10:43:23 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Mario</title>
		<link>http://www.mfasold.net/blog/2010/02/python-recipe-read-csvtsv-textfiles-and-ignore-comment-lines/comment-page-1/#comment-2371</link>
		<dc:creator>Mario</dc:creator>
		<pubDate>Thu, 10 Feb 2011 09:12:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfasold.net/blog/?p=411#comment-2371</guid>
		<description>The code above has only been tested with Python Version &lt;3.0. I&#039;ve not been switched to &gt;3.0 yet, so I am not familiar with it and cannot give you a good answer on the fly. Maybe you just try the python 2 -&gt; 3 converter and inspect the result.</description>
		<content:encoded><![CDATA[<p>The code above has only been tested with Python Version &lt;3.0. I've not been switched to >3.0 yet, so I am not familiar with it and cannot give you a good answer on the fly. Maybe you just try the python 2 -> 3 converter and inspect the result.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suresh</title>
		<link>http://www.mfasold.net/blog/2010/02/python-recipe-read-csvtsv-textfiles-and-ignore-comment-lines/comment-page-1/#comment-2370</link>
		<dc:creator>suresh</dc:creator>
		<pubDate>Thu, 10 Feb 2011 03:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfasold.net/blog/?p=411#comment-2370</guid>
		<description>Hi,
I get this error in python 3.1

TypeError: argument 1 must be an iterator

why?
suresh</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I get this error in python 3.1</p>
<p>TypeError: argument 1 must be an iterator</p>
<p>why?<br />
suresh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suresh</title>
		<link>http://www.mfasold.net/blog/2010/02/python-recipe-read-csvtsv-textfiles-and-ignore-comment-lines/comment-page-1/#comment-2369</link>
		<dc:creator>suresh</dc:creator>
		<pubDate>Thu, 10 Feb 2011 02:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfasold.net/blog/?p=411#comment-2369</guid>
		<description>Nice code! thanks</description>
		<content:encoded><![CDATA[<p>Nice code! thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos Grohmann</title>
		<link>http://www.mfasold.net/blog/2010/02/python-recipe-read-csvtsv-textfiles-and-ignore-comment-lines/comment-page-1/#comment-1221</link>
		<dc:creator>Carlos Grohmann</dc:creator>
		<pubDate>Mon, 07 Jun 2010 03:19:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfasold.net/blog/?p=411#comment-1221</guid>
		<description>I changed the line

line.startswith(self.commentstring):

to

line.startswith(self.commentstring) or not line.strip():

so now it can also skip blank lines.</description>
		<content:encoded><![CDATA[<p>I changed the line</p>
<p>line.startswith(self.commentstring):</p>
<p>to</p>
<p>line.startswith(self.commentstring) or not line.strip():</p>
<p>so now it can also skip blank lines.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carlos Grohmann</title>
		<link>http://www.mfasold.net/blog/2010/02/python-recipe-read-csvtsv-textfiles-and-ignore-comment-lines/comment-page-1/#comment-1220</link>
		<dc:creator>Carlos Grohmann</dc:creator>
		<pubDate>Mon, 07 Jun 2010 02:38:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfasold.net/blog/?p=411#comment-1220</guid>
		<description>Very useful code. many many thanks</description>
		<content:encoded><![CDATA[<p>Very useful code. many many thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: X-man</title>
		<link>http://www.mfasold.net/blog/2010/02/python-recipe-read-csvtsv-textfiles-and-ignore-comment-lines/comment-page-1/#comment-1134</link>
		<dc:creator>X-man</dc:creator>
		<pubDate>Mon, 12 Apr 2010 08:46:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfasold.net/blog/?p=411#comment-1134</guid>
		<description>Sorry for my English, but your post touched me so that I could not remain silent. Thank you for such posts, write more often.</description>
		<content:encoded><![CDATA[<p>Sorry for my English, but your post touched me so that I could not remain silent. Thank you for such posts, write more often.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Herkimer</title>
		<link>http://www.mfasold.net/blog/2010/02/python-recipe-read-csvtsv-textfiles-and-ignore-comment-lines/comment-page-1/#comment-1043</link>
		<dc:creator>Herkimer</dc:creator>
		<pubDate>Sat, 06 Mar 2010 02:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mfasold.net/blog/?p=411#comment-1043</guid>
		<description>Thanks for posting this; just found your blog searching around. Keep up the good work!</description>
		<content:encoded><![CDATA[<p>Thanks for posting this; just found your blog searching around. Keep up the good work!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

