<?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: About getters and setters in Python</title>
	<atom:link href="http://unclezeiv.kerid.org/2009/08/about-getters-and-setters-in-python/feed" rel="self" type="application/rss+xml" />
	<link>http://unclezeiv.kerid.org/2009/08/about-getters-and-setters-in-python</link>
	<description>frequently lost in thought</description>
	<lastBuildDate>Wed, 24 Mar 2010 01:34:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: UncleZeiv</title>
		<link>http://unclezeiv.kerid.org/2009/08/about-getters-and-setters-in-python/comment-page-1#comment-3846</link>
		<dc:creator>UncleZeiv</dc:creator>
		<pubDate>Thu, 27 Aug 2009 22:41:59 +0000</pubDate>
		<guid isPermaLink="false">http://unclezeiv.kerid.org/?p=91#comment-3846</guid>
		<description>&lt;a href=&quot;#comment-3842&quot; rel=&quot;nofollow&quot;&gt;@PJ Eby&lt;/a&gt; 
Interesting solution, it didn&#039;t occur to me... it could indeed solve my problems.

(Thanks for commenting, I really appreciated it.)</description>
		<content:encoded><![CDATA[<p><a href="#comment-3842" rel="nofollow">@PJ Eby</a><br />
Interesting solution, it didn&#8217;t occur to me&#8230; it could indeed solve my problems.</p>
<p>(Thanks for commenting, I really appreciated it.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PJ Eby</title>
		<link>http://unclezeiv.kerid.org/2009/08/about-getters-and-setters-in-python/comment-page-1#comment-3842</link>
		<dc:creator>PJ Eby</dc:creator>
		<pubDate>Thu, 27 Aug 2009 14:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://unclezeiv.kerid.org/?p=91#comment-3842</guid>
		<description>If the properties aren&#039;t performance-critical, you can always make the property in the base class be property(lambda s:s.get_foo(), lambda s,v: s.set_foo(v)).  Then, simply override the getter or setter in the subclass(es) involved.

In any case, there are plenty of worse ways that changes to a base class can impact a subclass; subclassing is inherently a tighter coupling between classes than mere use.</description>
		<content:encoded><![CDATA[<p>If the properties aren&#8217;t performance-critical, you can always make the property in the base class be property(lambda s:s.get_foo(), lambda s,v: s.set_foo(v)).  Then, simply override the getter or setter in the subclass(es) involved.</p>
<p>In any case, there are plenty of worse ways that changes to a base class can impact a subclass; subclassing is inherently a tighter coupling between classes than mere use.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
