本文整理汇总了Python中topaz.coerce.Coerce.symbol方法的典型用法代码示例。如果您正苦于以下问题:Python Coerce.symbol方法的具体用法?Python Coerce.symbol怎么用?Python Coerce.symbol使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类topaz.coerce.Coerce
的用法示例。
在下文中一共展示了Coerce.symbol方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: method_module_function
# 需要导入模块: from topaz.coerce import Coerce [as 别名]
# 或者: from topaz.coerce.Coerce import symbol [as 别名]
def method_module_function(self, space, args_w):
if not args_w:
self.set_default_visibility(space, W_FunctionObject.MODULE_FUNCTION)
return self
for w_arg in args_w:
name = Coerce.symbol(space, w_arg)
w_method = self.find_method(space, name)
if w_method is None or isinstance(w_method, UndefMethod):
cls_name = space.obj_to_s(self)
raise space.error(space.w_NameError, "undefined method `%s' for class `%s'" % (name, cls_name))
self.attach_method(space, name, w_method)
self.set_method_visibility(space, name, W_FunctionObject.PRIVATE)
return self
示例2: method_module_function
# 需要导入模块: from topaz.coerce import Coerce [as 别名]
# 或者: from topaz.coerce.Coerce import symbol [as 别名]
def method_module_function(self, space, args_w):
for w_arg in args_w:
name = Coerce.symbol(space, w_arg)
self.attach_method(space, name, self._find_method_pure(space, name, self.version))
示例3: method_attr_writer
# 需要导入模块: from topaz.coerce import Coerce [as 别名]
# 或者: from topaz.coerce.Coerce import symbol [as 别名]
def method_attr_writer(self, space, args_w):
for w_arg in args_w:
varname = Coerce.symbol(space, w_arg)
self.define_method(space, varname + "=", AttributeWriter("@" + varname))
示例4: method_attr_reader
# 需要导入模块: from topaz.coerce import Coerce [as 别名]
# 或者: from topaz.coerce.Coerce import symbol [as 别名]
def method_attr_reader(self, space, args_w):
for w_arg in args_w:
varname = Coerce.symbol(space, w_arg)
self.define_method(space, varname, AttributeReader("@" + varname))