class documentation

class AppStack(list):

View In Hierarchy

A stack-like list. Calling it returns the head of the stack.
Method push Add a new Bottle instance to the stack
Method __call__ Return the current default application.
def push(self, value=None):
Add a new Bottle instance to the stack
def __call__(self):
Return the current default application.