Ejemplo n.º 1
0
def _unpickle_appattr(reverse_name, args):
    """Given an attribute name and a list of args, gets
    the attribute from the current app and calls it."""
    return get_current_app()._rgetattr(reverse_name)(*args)
Ejemplo n.º 2
0
def _unpickle_appattr(reverse_name, args):
    """Given an attribute name and a list of args, gets
    the attribute from the current app and calls it."""
    return get_current_app()._rgetattr(reverse_name)(*args)
Ejemplo n.º 3
0
def _app_or_default(app=None):
    if app is None:
        return state.get_current_app()
    return app
Ejemplo n.º 4
0
def _app_or_default(app=None):
    if app is None:
        return state.get_current_app()
    return app