本文整理汇总了Python中family.Family.str方法的典型用法代码示例。如果您正苦于以下问题:Python Family.str方法的具体用法?Python Family.str怎么用?Python Family.str使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类family.Family
的用法示例。
在下文中一共展示了Family.str方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: syn_cell_data_func
# 需要导入模块: from family import Family [as 别名]
# 或者: from family.Family import str [as 别名]
def syn_cell_data_func(column, renderer, model, iter, data=None):
'''
'''
v = model[iter][0]
author = None
if v.author is None:
author = ''
else:
author = utils.xml_safe(unicode(v.author))
renderer.set_property('markup', '<i>%s</i> %s (<small>%s</small>)'
% (Genus.str(v), author, Family.str(v.family)))
示例2: _syn_data_func
# 需要导入模块: from family import Family [as 别名]
# 或者: from family.Family import str [as 别名]
def _syn_data_func(column, cell, model, iter, data=None):
v = model[iter][0]
syn = v.synonym
cell.set_property('markup', '<i>%s</i> %s (<small>%s</small>)'
% (Genus.str(syn),
utils.xml_safe(unicode(syn.author)),
Family.str(syn.family)))
# set background color to indicate it's new
if v.id is None:
cell.set_property('foreground', 'blue')
else:
cell.set_property('foreground', None)