<?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 internals: Working with Python ASTs</title>
	<atom:link href="http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/feed/" rel="self" type="application/rss+xml" />
	<link>http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/</link>
	<description>Eli Bendersky's personal website</description>
	<lastBuildDate>Wed, 10 Mar 2010 17:32:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Lora Ireland</title>
		<link>http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/comment-page-1/#comment-274594</link>
		<dc:creator>Lora Ireland</dc:creator>
		<pubDate>Sat, 06 Mar 2010 23:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://eli.thegreenplace.net/?p=1997#comment-274594</guid>
		<description>This is great! Thanks for this post. I am starting python and this is a big help.</description>
		<content:encoded><![CDATA[<p>This is great! Thanks for this post. I am starting python and this is a big help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: E.T</title>
		<link>http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/comment-page-1/#comment-241308</link>
		<dc:creator>E.T</dc:creator>
		<pubDate>Mon, 28 Dec 2009 04:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://eli.thegreenplace.net/?p=1997#comment-241308</guid>
		<description>One of the fascinating features that Lisp has is the ability to do meta-programming (macro), and I think that with ast module, Python (partially) obtains this ability in a somehow weird way.</description>
		<content:encoded><![CDATA[<p>One of the fascinating features that Lisp has is the ability to do meta-programming (macro), and I think that with ast module, Python (partially) obtains this ability in a somehow weird way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eliben</title>
		<link>http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/comment-page-1/#comment-232068</link>
		<dc:creator>eliben</dc:creator>
		<pubDate>Fri, 04 Dec 2009 05:24:42 +0000</pubDate>
		<guid isPermaLink="false">http://eli.thegreenplace.net/?p=1997#comment-232068</guid>
		<description>&lt;strong&gt;Jose,&lt;/strong&gt;

I wouldn&#039;t say Python is currently moving towards Lisp. On the contrary - there was a great debate for the Python 3000 move about the functional tools - map, reduce, lambda. Guido wanted them removed from the language (because list and generator comprehensions are better), but at last was convinced to keep them - though I think reduce moved from a built-in to a module (functools) in the standard library.</description>
		<content:encoded><![CDATA[<p><strong>Jose,</strong></p>
<p>I wouldn&#8217;t say Python is currently moving towards Lisp. On the contrary &#8211; there was a great debate for the Python 3000 move about the functional tools &#8211; map, reduce, lambda. Guido wanted them removed from the language (because list and generator comprehensions are better), but at last was convinced to keep them &#8211; though I think reduce moved from a built-in to a module (functools) in the standard library.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: José Hernández</title>
		<link>http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/comment-page-1/#comment-231263</link>
		<dc:creator>José Hernández</dc:creator>
		<pubDate>Tue, 01 Dec 2009 19:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://eli.thegreenplace.net/?p=1997#comment-231263</guid>
		<description>This is interesting because it seems Python is moving more and more towards Lisp, albeit with a significantly different syntax. It adopted functional programming built-in functions (map, reduce, filter). Lisp programs have the unique ability to analyze and modify other Lisp programs. AST is a significant step towards bringing this ability to Python.</description>
		<content:encoded><![CDATA[<p>This is interesting because it seems Python is moving more and more towards Lisp, albeit with a significantly different syntax. It adopted functional programming built-in functions (map, reduce, filter). Lisp programs have the unique ability to analyze and modify other Lisp programs. AST is a significant step towards bringing this ability to Python.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: alexmajy</title>
		<link>http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/comment-page-1/#comment-230201</link>
		<dc:creator>alexmajy</dc:creator>
		<pubDate>Sat, 28 Nov 2009 19:16:59 +0000</pubDate>
		<guid isPermaLink="false">http://eli.thegreenplace.net/?p=1997#comment-230201</guid>
		<description>I like it and &quot;Abstract vs. Concrete Syntax Trees&quot;, thank you</description>
		<content:encoded><![CDATA[<p>I like it and &#8220;Abstract vs. Concrete Syntax Trees&#8221;, thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christopher Lozinski</title>
		<link>http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/comment-page-1/#comment-230146</link>
		<dc:creator>Christopher Lozinski</dc:creator>
		<pubDate>Sat, 28 Nov 2009 16:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://eli.thegreenplace.net/?p=1997#comment-230146</guid>
		<description>Thank you very much.  I have long wondered why we are typing text to generate code.  With this stuff, I can build an editor that only allows legal statements.  That goes a long way to getting rid of lots of errors. 

I did not quite understand all the details, but the fact that the compiler can take AST graphs is all i need to know at this point. 

Thank You
Christopher Lozinski</description>
		<content:encoded><![CDATA[<p>Thank you very much.  I have long wondered why we are typing text to generate code.  With this stuff, I can build an editor that only allows legal statements.  That goes a long way to getting rid of lots of errors. </p>
<p>I did not quite understand all the details, but the fact that the compiler can take AST graphs is all i need to know at this point. </p>
<p>Thank You<br />
Christopher Lozinski</p>
]]></content:encoded>
	</item>
</channel>
</rss>
