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