本文整理汇总了Python中space.Space.set方法的典型用法代码示例。如果您正苦于以下问题:Python Space.set方法的具体用法?Python Space.set怎么用?Python Space.set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类space.Space
的用法示例。
在下文中一共展示了Space.set方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_append
# 需要导入模块: from space import Space [as 别名]
# 或者: from space.Space import set [as 别名]
def test_append(self):
space = Space('hello world')
space.append('foo', 'bar')
space.set('foo2', 'bar')
space.append('foo', 'two')
self.assertEqual(space.get('foo'), 'bar')
self.assertEqual(space.length(), 4)
示例2: testDeepCopy
# 需要导入模块: from space import Space [as 别名]
# 或者: from space.Space import set [as 别名]
def testDeepCopy(self):
space1 = Space('hello world')
space2 = space1.clone()
self.assertEqual(space2.get('hello'), 'world', 'Clone should work')
space2.set('hello', 'mom')
self.assertEqual(space1.get('hello'), 'world', 'Clone makes deep copy')
space3 = space1
space3.set('hello', 'dad')
self.assertEqual(space1.get('hello'), 'dad', '= makes shallow copy')
space1.set('anotherSpace', Space('123 456'))
self.assertEqual(space3.get('anotherSpace 123'), '456')
示例3: test__str__
# 需要导入模块: from space import Space [as 别名]
# 或者: from space.Space import set [as 别名]
def test__str__(self):
space = Space("hello world")
self.assertEqual(space.__str__(), 'hello world\n')
space.set('foo', 'bar')
self.assertEqual(space.__str__(), 'foo bar\nhello world\n')
space2 = Space('john\n age 5')
self.assertEqual(space2.__str__(), 'john\n age 5\n')
space2.set('multiline', 'hello\nworld')
self.assertEqual(space2.__str__(), 'john\n age 5\nmultiline hello\n world\n')
space2.set('other', 'foobar')
self.assertEqual(space2.__str__(), 'john\n age 5\nmultiline hello\n world\nother foobar\n')
示例4: test_set
# 需要导入模块: from space import Space [as 别名]
# 或者: from space.Space import set [as 别名]
def test_set(self):
space = Space('hello world')
self.assertEqual(space.get('hello'), 'world')
self.assertTrue(isinstance(space.set('hello', 'mom'), Space), 'set returns self for chaining')
intSpace = Space()
intSpace.set(2, 'hi')
self.assertEqual(intSpace.get(2), 'hi')
emptyStringSpace = Space()
emptyStringSpace.set('boom', '')
self.assertEqual(emptyStringSpace.get('boom'), '')
# this is important, value should have been changed
self.assertEqual(space.get('hello'), 'mom')
space.set('head style color', 'blue')
self.assertEqual(space.get('head style color'), 'blue')
示例5: testGetSet
# 需要导入模块: from space import Space [as 别名]
# 或者: from space.Space import set [as 别名]
def testGetSet(self):
space = Space('Hello World')
self.assertEqual(space.get("Hello"), 'World', 'Property should be accessible')
self.assertEqual(type(space.get("Hello")), str, 'Leaf should be string')
space.set('foo', 'bar')
self.assertEqual(space.get('foo'), 'bar', 'Space should be modifiable' )