本文整理汇总了Python中lexicon.Lexicon.foo方法的典型用法代码示例。如果您正苦于以下问题:Python Lexicon.foo方法的具体用法?Python Lexicon.foo怎么用?Python Lexicon.foo使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类lexicon.Lexicon
的用法示例。
在下文中一共展示了Lexicon.foo方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: attributes_work
# 需要导入模块: from lexicon import Lexicon [as 别名]
# 或者: from lexicon.Lexicon import foo [as 别名]
def attributes_work(self):
lex = Lexicon()
lex.foo = 'bar'
eq_(lex['foo'], lex.foo)
示例2: attributes_work
# 需要导入模块: from lexicon import Lexicon [as 别名]
# 或者: from lexicon.Lexicon import foo [as 别名]
def attributes_work(self):
l = Lexicon()
l.foo = 'bar'
eq_(l['foo'], l.foo)
示例3: aliases_appear_in_attributes
# 需要导入模块: from lexicon import Lexicon [as 别名]
# 或者: from lexicon.Lexicon import foo [as 别名]
def aliases_appear_in_attributes(self):
lex = Lexicon()
lex.alias('foo', to='bar')
lex.foo = 'value'
assert lex.foo == lex.bar == lex['foo'] == lex['bar'] == 'value'
示例4: aliases_appear_in_attributes
# 需要导入模块: from lexicon import Lexicon [as 别名]
# 或者: from lexicon.Lexicon import foo [as 别名]
def aliases_appear_in_attributes(self):
l = Lexicon()
l.alias('foo', to='bar')
l.foo = 'value'
assert l.foo == l.bar == l['foo'] == l['bar'] == 'value'