Esempio 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)
Esempio 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)
Esempio n. 3
0
def _app_or_default(app=None):
    if app is None:
        return state.get_current_app()
    return app
Esempio n. 4
0
def _app_or_default(app=None):
    if app is None:
        return state.get_current_app()
    return app