当前位置: 首页>>代码示例>>Python>>正文


Python compat.inspect_getargspec方法代码示例

本文整理汇总了Python中mako.compat.inspect_getargspec方法的典型用法代码示例。如果您正苦于以下问题:Python compat.inspect_getargspec方法的具体用法?Python compat.inspect_getargspec怎么用?Python compat.inspect_getargspec使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在mako.compat的用法示例。


在下文中一共展示了compat.inspect_getargspec方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: __init__

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import inspect_getargspec [as 别名]
def __init__(self, extra_vars_func=None, options=None, extension="mak"):
        self.extra_vars_func = extra_vars_func
        self.extension = extension
        if not options:
            options = {}

        # Pull the options out and initialize the lookup
        lookup_options = {}
        for k, v in options.items():
            if k.startswith("mako."):
                lookup_options[k[5:]] = v
            elif k in ["directories", "filesystem_checks", "module_directory"]:
                lookup_options[k] = v
        self.lookup = TemplateLookup(**lookup_options)

        self.tmpl_options = {}
        # transfer lookup args to template args, based on those available
        # in getargspec
        for kw in compat.inspect_getargspec(Template.__init__)[0]:
            if kw in lookup_options:
                self.tmpl_options[kw] = lookup_options[kw] 
开发者ID:remg427,项目名称:misp42splunk,代码行数:23,代码来源:turbogears.py

示例2: __init__

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import inspect_getargspec [as 别名]
def __init__(self, extra_vars_func=None, options=None, extension='mak'):
        self.extra_vars_func = extra_vars_func
        self.extension = extension
        if not options:
            options = {}

        # Pull the options out and initialize the lookup
        lookup_options = {}
        for k, v in options.items():
            if k.startswith('mako.'):
                lookup_options[k[5:]] = v
            elif k in ['directories', 'filesystem_checks', 'module_directory']:
                lookup_options[k] = v
        self.lookup = TemplateLookup(**lookup_options)

        self.tmpl_options = {}
        # transfer lookup args to template args, based on those available
        # in getargspec
        for kw in compat.inspect_getargspec(Template.__init__)[0]:
            if kw in lookup_options:
                self.tmpl_options[kw] = lookup_options[kw] 
开发者ID:jpush,项目名称:jbox,代码行数:23,代码来源:turbogears.py

示例3: _kwargs_for_callable

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import inspect_getargspec [as 别名]
def _kwargs_for_callable(callable_, data):
    argspec = compat.inspect_getargspec(callable_)
    # for normal pages, **pageargs is usually present
    if argspec[2]:
        return data

    # for rendering defs from the top level, figure out the args
    namedargs = argspec[0] + [v for v in argspec[1:3] if v is not None]
    kwargs = {}
    for arg in namedargs:
        if arg != "context" and arg in data and arg not in kwargs:
            kwargs[arg] = data[arg]
    return kwargs 
开发者ID:remg427,项目名称:misp42splunk,代码行数:15,代码来源:runtime.py

示例4: _kwargs_for_include

# 需要导入模块: from mako import compat [as 别名]
# 或者: from mako.compat import inspect_getargspec [as 别名]
def _kwargs_for_include(callable_, data, **kwargs):
    argspec = compat.inspect_getargspec(callable_)
    namedargs = argspec[0] + [v for v in argspec[1:3] if v is not None]
    for arg in namedargs:
        if arg != "context" and arg in data and arg not in kwargs:
            kwargs[arg] = data[arg]
    return kwargs 
开发者ID:remg427,项目名称:misp42splunk,代码行数:9,代码来源:runtime.py


注:本文中的mako.compat.inspect_getargspec方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。