<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: execution locals: better than thread locals/globals</title>
	<atom:link href="http://holgerkrekel.net/2012/11/16/execution-locals-better-than-thread-localsglobals/feed/" rel="self" type="application/rss+xml" />
	<link>http://holgerkrekel.net/2012/11/16/execution-locals-better-than-thread-localsglobals/</link>
	<description>Decentralize. Take the red pill.</description>
	<lastBuildDate>Wed, 22 May 2013 16:04:40 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: holger krekel</title>
		<link>http://holgerkrekel.net/2012/11/16/execution-locals-better-than-thread-localsglobals/#comment-258</link>
		<dc:creator><![CDATA[holger krekel]]></dc:creator>
		<pubDate>Wed, 21 Nov 2012 12:51:39 +0000</pubDate>
		<guid isPermaLink="false">http://tetamap.wordpress.com/?p=322#comment-258</guid>
		<description><![CDATA[_getlocals() is not meant for usage from the outside, maybe it could be hidden better.]]></description>
		<content:encoded><![CDATA[<p>_getlocals() is not meant for usage from the outside, maybe it could be hidden better.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aleksey</title>
		<link>http://holgerkrekel.net/2012/11/16/execution-locals-better-than-thread-localsglobals/#comment-257</link>
		<dc:creator><![CDATA[Aleksey]]></dc:creator>
		<pubDate>Wed, 21 Nov 2012 12:38:57 +0000</pubDate>
		<guid isPermaLink="false">http://tetamap.wordpress.com/?p=322#comment-257</guid>
		<description><![CDATA[Thank for amaizing and useful module.
May I suggest you to restrict xlocal.__setitem__ and xlocal.__delitem__ access to avoid situations like this:

from xlocal import xlocal

local = xlocal()
with local(x=None):
    local._getlocals().__setitem__(&#039;x&#039;, True)
    ...]]></description>
		<content:encoded><![CDATA[<p>Thank for amaizing and useful module.<br />
May I suggest you to restrict xlocal.__setitem__ and xlocal.__delitem__ access to avoid situations like this:</p>
<p>from xlocal import xlocal</p>
<p>local = xlocal()<br />
with local(x=None):<br />
    local._getlocals().__setitem__(&#8216;x&#8217;, True)<br />
    &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: holger krekel</title>
		<link>http://holgerkrekel.net/2012/11/16/execution-locals-better-than-thread-localsglobals/#comment-242</link>
		<dc:creator><![CDATA[holger krekel]]></dc:creator>
		<pubDate>Mon, 19 Nov 2012 08:12:29 +0000</pubDate>
		<guid isPermaLink="false">http://tetamap.wordpress.com/?p=322#comment-242</guid>
		<description><![CDATA[Indeed, Contextual looks similar but more convoluted.  &quot;xlocal&quot; aims to be minimal, not requiring subclassing etc.  Thanks for the reference.]]></description>
		<content:encoded><![CDATA[<p>Indeed, Contextual looks similar but more convoluted.  &#8220;xlocal&#8221; aims to be minimal, not requiring subclassing etc.  Thanks for the reference.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: holger krekel</title>
		<link>http://holgerkrekel.net/2012/11/16/execution-locals-better-than-thread-localsglobals/#comment-241</link>
		<dc:creator><![CDATA[holger krekel]]></dc:creator>
		<pubDate>Mon, 19 Nov 2012 08:10:12 +0000</pubDate>
		<guid isPermaLink="false">http://tetamap.wordpress.com/?p=322#comment-241</guid>
		<description><![CDATA[Thanks, fixed.]]></description>
		<content:encoded><![CDATA[<p>Thanks, fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jma</title>
		<link>http://holgerkrekel.net/2012/11/16/execution-locals-better-than-thread-localsglobals/#comment-225</link>
		<dc:creator><![CDATA[jma]]></dc:creator>
		<pubDate>Fri, 16 Nov 2012 22:33:27 +0000</pubDate>
		<guid isPermaLink="false">http://tetamap.wordpress.com/?p=322#comment-225</guid>
		<description><![CDATA[&quot;as defined at the invoking with xcurrent(x=42) statement&quot;

It looks like you changed a 3 to a 42 (or vice versa).]]></description>
		<content:encoded><![CDATA[<p>&#8220;as defined at the invoking with xcurrent(x=42) statement&#8221;</p>
<p>It looks like you changed a 3 to a 42 (or vice versa).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gsk</title>
		<link>http://holgerkrekel.net/2012/11/16/execution-locals-better-than-thread-localsglobals/#comment-224</link>
		<dc:creator><![CDATA[gsk]]></dc:creator>
		<pubDate>Fri, 16 Nov 2012 20:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://tetamap.wordpress.com/?p=322#comment-224</guid>
		<description><![CDATA[From a (very) quick look seems like an independent reinvention of contextual: http://pypi.python.org/pypi/Contextual]]></description>
		<content:encoded><![CDATA[<p>From a (very) quick look seems like an independent reinvention of contextual: <a href="http://pypi.python.org/pypi/Contextual" rel="nofollow">http://pypi.python.org/pypi/Contextual</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
