<?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 versus Java</title>
	<atom:link href="http://www.coderookie.com/2006/java/python-versus-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.coderookie.com/2006/java/python-versus-java/</link>
	<description>Programming tips from a rookie developer to other rookie developers</description>
	<lastBuildDate>Sat, 23 Oct 2010 02:42:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: lopex</title>
		<link>http://www.coderookie.com/2006/java/python-versus-java/comment-page-1/#comment-8</link>
		<dc:creator>lopex</dc:creator>
		<pubDate>Fri, 01 Sep 2006 18:27:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.coderookie.com/2006/java/python-versus-java/#comment-8</guid>
		<description>if Python had true closures, this one would work

def fun1(a):
    def fun2():
        a+=1
    return fun2

f=fun1(2)
f()

fortunately there are workarounds</description>
		<content:encoded><![CDATA[<p>if Python had true closures, this one would work</p>
<p>def fun1(a):<br />
    def fun2():<br />
        a+=1<br />
    return fun2</p>
<p>f=fun1(2)<br />
f()</p>
<p>fortunately there are workarounds</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kris</title>
		<link>http://www.coderookie.com/2006/java/python-versus-java/comment-page-1/#comment-7</link>
		<dc:creator>Kris</dc:creator>
		<pubDate>Fri, 01 Sep 2006 08:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.coderookie.com/2006/java/python-versus-java/#comment-7</guid>
		<description>Thanks Luis,

I must look thru the Python documentation once more (haven&#039;t seen it in a year or so).</description>
		<content:encoded><![CDATA[<p>Thanks Luis,</p>
<p>I must look thru the Python documentation once more (haven&#8217;t seen it in a year or so).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis Bruno</title>
		<link>http://www.coderookie.com/2006/java/python-versus-java/comment-page-1/#comment-6</link>
		<dc:creator>Luis Bruno</dc:creator>
		<pubDate>Fri, 01 Sep 2006 08:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.coderookie.com/2006/java/python-versus-java/#comment-6</guid>
		<description>I think this is correct:

a+b translates into a.__add__(b)
a+=b translates into a.__iadd__(b)

Anyway, a search for __iadd__ in Python&#039;s documentation index might be useful.</description>
		<content:encoded><![CDATA[<p>I think this is correct:</p>
<p>a+b translates into a.__add__(b)<br />
a+=b translates into a.__iadd__(b)</p>
<p>Anyway, a search for __iadd__ in Python&#8217;s documentation index might be useful.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

