Skip to content

Instantly share code, notes, and snippets.

@alexrudy
Created September 19, 2012 03:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexrudy/3747562 to your computer and use it in GitHub Desktop.
Save alexrudy/3747562 to your computer and use it in GitHub Desktop.
Stack Attribute Trick
def __getattr__(self,name):
"""Provides a passthrough for functions that we haven't named yet.
This allows *stacks* to call methods defined within *frames*. Most frames define a :meth:`~BaseFrame.__show__`. This method can be called using :meth:`show` with the following syntax::
>>> Stack.show("SomeFrameName")
The special syntax can take as many framenames as desired as arguments, and will call the named method on each one. So::
>>> Stack.show("FrameA","FrameB","FrameC")
will call the :meth:`~BaseFrame.__show__` method on each frame.
"""
def __attr_method(*framenames):
# Set up frame method name (as string)
method = '__' + name + '__'
# Initialize return values
rvals = []
framenames = list(*framenames)
if len(framenames) < 1:
framenames = [self._default_frame()]
# Execute the desired method everywhere
for framename in framenames:
if framename != None and framename in self:
rvals += [ getattr(self[framename],method)() ]
else:
self._key_error(framename)
# Return the appropriate value
if len(rvals) == 1:
return rvals[0]
elif len(rvals) == 0:
return None
else:
return tuple(rvals)
return __attr_method
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment