git.fiddlerwoaroof.com
unsorted/pythonsnippets_PW91fa.py
60c2b9f5
 @contextlib.contextmanager
 def dict_munger(d):
 	class Munger(object):
 		def __getattribute__(self, k):
 			return lambda v: d.__setitem__(k,v)
 	yield Munger()