<?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: Adventures in Meta programming in Python: im_class, __import__, __getattribute__</title>
	<atom:link href="http://lostechies.com/ryansvihla/2010/01/08/adventures-in-meta-programming-in-python-im-class-import-getattribute/feed/" rel="self" type="application/rss+xml" />
	<link>http://lostechies.com/ryansvihla/2010/01/08/adventures-in-meta-programming-in-python-im-class-import-getattribute/</link>
	<description>The small minded meanderings of the confused</description>
	<lastBuildDate>Mon, 15 Apr 2013 15:10:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.4.2</generator>
	<item>
		<title>By: Ryan Svihla</title>
		<link>http://lostechies.com/ryansvihla/2010/01/08/adventures-in-meta-programming-in-python-im-class-import-getattribute/#comment-141</link>
		<dc:creator>Ryan Svihla</dc:creator>
		<pubDate>Fri, 08 Jan 2010 13:09:56 +0000</pubDate>
		<guid isPermaLink="false">/blogs/rssvihla/archive/2010/01/08/adventures-in-meta-programming-in-python-im-class-import-getattribute.aspx#comment-141</guid>
		<description>@bluehavana they have that too wait a blog post :)

@chris tavares   
The __call__ and __init__ methods and I figure several other special methods are not accessed. 
As you said just object attributes seem to be all thats accessed.
I&#039;ll update with the correction and thanks again!</description>
		<content:encoded><![CDATA[<p>@bluehavana they have that too wait a blog post <img src='http://lostechies.com/ryansvihla/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>@chris tavares<br />
The __call__ and __init__ methods and I figure several other special methods are not accessed.<br />
As you said just object attributes seem to be all thats accessed.<br />
I&#8217;ll update with the correction and thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Tavares</title>
		<link>http://lostechies.com/ryansvihla/2010/01/08/adventures-in-meta-programming-in-python-im-class-import-getattribute/#comment-140</link>
		<dc:creator>Chris Tavares</dc:creator>
		<pubDate>Fri, 08 Jan 2010 08:05:04 +0000</pubDate>
		<guid isPermaLink="false">/blogs/rssvihla/archive/2010/01/08/adventures-in-meta-programming-in-python-im-class-import-getattribute.aspx#comment-140</guid>
		<description>Technically, __getattribute__ isn&#039;t called when a method is called, it&#039;s called when a method (or any attribute of the object) is accessed. It&#039;s original intention was to allow you to build dictionary-like objects, but turns out to be very useful for other things, as you discovered.

The net result is that if you&#039;ve got a class, Foo, that implements __getattribute__, then:

o = Foo()
m = o.SomeMethod # __getattribute__ fires here
m()                          # not here

</description>
		<content:encoded><![CDATA[<p>Technically, __getattribute__ isn&#8217;t called when a method is called, it&#8217;s called when a method (or any attribute of the object) is accessed. It&#8217;s original intention was to allow you to build dictionary-like objects, but turns out to be very useful for other things, as you discovered.</p>
<p>The net result is that if you&#8217;ve got a class, Foo, that implements __getattribute__, then:</p>
<p>o = Foo()<br />
m = o.SomeMethod # __getattribute__ fires here<br />
m()                          # not here</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bluehavana</title>
		<link>http://lostechies.com/ryansvihla/2010/01/08/adventures-in-meta-programming-in-python-im-class-import-getattribute/#comment-139</link>
		<dc:creator>bluehavana</dc:creator>
		<pubDate>Fri, 08 Jan 2010 05:23:02 +0000</pubDate>
		<guid isPermaLink="false">/blogs/rssvihla/archive/2010/01/08/adventures-in-meta-programming-in-python-im-class-import-getattribute.aspx#comment-139</guid>
		<description>Hmm... Love the __getattribute__, its like method_missing? but not.</description>
		<content:encoded><![CDATA[<p>Hmm&#8230; Love the __getattribute__, its like method_missing? but not.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
