示例#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)
示例#2
0
文件: base.py 项目: ahalife/celery
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)
示例#3
0
def _app_or_default(app=None):
    if app is None:
        return state.get_current_app()
    return app
示例#4
0
def _app_or_default(app=None):
    if app is None:
        return state.get_current_app()
    return app