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


Python TypeSlots.Signature类代码示例

本文整理汇总了Python中TypeSlots.Signature的典型用法代码示例。如果您正苦于以下问题:Python Signature类的具体用法?Python Signature怎么用?Python Signature使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: declare_in_scope

 def declare_in_scope(self, scope):
     func_type, sig = self.func_type, self.sig
     if func_type is None:
         if sig is None:
             sig = Signature(self.args, self.ret_type)
         func_type = sig.function_type()
     scope.declare_builtin_cfunction(self.py_name, func_type, self.cname, self.py_equiv, self.utility_code)
开发者ID:jpeel,项目名称:cython,代码行数:7,代码来源:Builtin.py

示例2: init_builtin_types

def init_builtin_types():
    for name, cname, funcs in builtin_types_table:
        utility = builtin_utility_code.get(name)
        the_type = builtin_scope.declare_builtin_type(name, cname, utility)
        for name, args, ret, cname in funcs:
            sig = Signature(args, ret)
            the_type.scope.declare_cfunction(name, sig.function_type(), None, cname)
开发者ID:enyst,项目名称:plexnet,代码行数:7,代码来源:Builtin.py

示例3: declare_in_type

 def declare_in_type(self, self_type):
     method_type, sig = self.func_type, self.sig
     if method_type is None:
         if sig is None:
             sig = Signature(self.args, self.ret_type)
         # override 'self' type (first argument)
         self_arg = PyrexTypes.CFuncTypeArg("", self_type, None)
         self_arg.not_none = True
         method_type = sig.function_type(self_arg)
     self_type.scope.declare_builtin_cfunction(self.py_name, method_type, self.cname, utility_code=self.utility_code)
开发者ID:jpeel,项目名称:cython,代码行数:10,代码来源:Builtin.py

示例4: build_func_type

 def build_func_type(self, sig=None, self_arg=None):
     if sig is None:
         sig = Signature(self.args, self.ret_type)
         sig.exception_check = False  # not needed for the current builtins
     func_type = sig.function_type(self_arg)
     if self.is_strict_signature:
         func_type.is_strict_signature = True
     if self.builtin_return_type:
         func_type.return_type = builtin_types[self.builtin_return_type]
     return func_type
开发者ID:yishenggudou,项目名称:cython,代码行数:10,代码来源:Builtin.py

示例5: declare_builtin_method

def declare_builtin_method(self_type, name, args, ret, cname):
    sig = Signature(args, ret)
    meth_type = sig.function_type(self_type)
    self_type.scope.declare_builtin_method(name, meth_type, cname)
开发者ID:Distrotech,项目名称:Pyrex,代码行数:4,代码来源:Builtin.py

示例6: declare_builtin_func

def declare_builtin_func(name, args, ret, cname, py_equiv = "*"):
    sig = Signature(args, ret)
    type = sig.function_type()
    utility = builtin_utility_code.get(name)
    builtin_scope.declare_builtin_cfunction(name, type, cname, py_equiv, utility)
开发者ID:Distrotech,项目名称:Pyrex,代码行数:5,代码来源:Builtin.py


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