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


Python StrObject.call方法代码示例

本文整理汇总了Python中typhon.objects.data.StrObject.call方法的典型用法代码示例。如果您正苦于以下问题:Python StrObject.call方法的具体用法?Python StrObject.call怎么用?Python StrObject.call使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在typhon.objects.data.StrObject的用法示例。


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

示例1: testSplit

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
    def testSplit(self):
        """
        Strings can be split.
        """

        s = StrObject(u"first second")
        result = s.call(u"split", [StrObject(u" ")])
        pieces = [obj._s for obj in unwrapList(result)]
        self.assertEqual(pieces, [u"first", u"second"])
开发者ID:markrwilliams,项目名称:typhon,代码行数:11,代码来源:test_data.py

示例2: testContainsTrue

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
    def testContainsTrue(self):
        """
        String containment tests have true positives.
        """

        haystack = StrObject(u"needle in a haystack")
        needle = StrObject(u"needle")
        result = haystack.call(u"contains", [needle])
        self.assertTrue(result.isTrue())
开发者ID:markrwilliams,项目名称:typhon,代码行数:11,代码来源:test_data.py

示例3: testMakeIterator

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
    def testMakeIterator(self):
        """
        Strings are iterable.
        """

        s = StrObject(u"cs")
        iterator = s.call(u"_makeIterator", [])
        with Ejector() as ej:
            result = iterator.call(u"next", [ej])
            objs = unwrapList(result)
            self.assertEqual(objs[0].getInt(), 0)
            self.assertEqual(objs[1]._c, u'c')
            result = iterator.call(u"next", [ej])
            objs = unwrapList(result)
            self.assertEqual(objs[0].getInt(), 1)
            self.assertEqual(objs[1]._c, u's')
            self.assertRaises(Ejecting, iterator.call, u"next", [ej])
开发者ID:markrwilliams,项目名称:typhon,代码行数:19,代码来源:test_data.py

示例4: testGet

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testGet(self):
     s = StrObject(u"index")
     result = s.call(u"get", [IntObject(2)])
     self.assertEqual(result._c, u'd')
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例5: testTrimWord

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testTrimWord(self):
     s = StrObject(u"  testing  ")
     result = s.call(u"trim", [])
     self.assertEqual(result._s, u"testing")
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例6: testTrimSpaces

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testTrimSpaces(self):
     s = StrObject(u"    ")
     result = s.call(u"trim", [])
     self.assertEqual(result._s, u"")
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例7: testLastIndexOfFail

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testLastIndexOfFail(self):
     s = StrObject(u"needle")
     result = s.call(u"lastIndexOf", [StrObject(u"x")])
     self.assertEqual(result.getInt(), -1)
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例8: testIndexOf

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testIndexOf(self):
     s = StrObject(u"needle")
     result = s.call(u"indexOf", [StrObject(u"e")])
     self.assertEqual(result.getInt(), 1)
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例9: testToUpperCaseUnicode

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testToUpperCaseUnicode(self):
     s = StrObject(u"¡Holá!")
     result = s.call(u"toUpperCase", [])
     self.assertEqual(result._s, u"¡HOLÁ!")
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例10: testToUpperCase

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testToUpperCase(self):
     s = StrObject(u"lower")
     result = s.call(u"toUpperCase", [])
     self.assertEqual(result._s, u"LOWER")
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例11: testToLowerCaseUnicode

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testToLowerCaseUnicode(self):
     s = StrObject(u"Α And Ω")
     result = s.call(u"toLowerCase", [])
     self.assertEqual(result._s, u"α and ω")
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例12: testSliceStartStop

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testSliceStartStop(self):
     s = StrObject(u"the lime in the coconut")
     result = s.call(u"slice", [IntObject(4), IntObject(8)])
     self.assertEqual(result._s, u"lime")
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例13: testSliceStart

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testSliceStart(self):
     s = StrObject(u"slice of lemon")
     result = s.call(u"slice", [IntObject(9)])
     self.assertEqual(result._s, u"lemon")
开发者ID:markrwilliams,项目名称:typhon,代码行数:6,代码来源:test_data.py

示例14: testJoin

# 需要导入模块: from typhon.objects.data import StrObject [as 别名]
# 或者: from typhon.objects.data.StrObject import call [as 别名]
 def testJoin(self):
     s = StrObject(u"|")
     result = s.call(u"join",
             [ConstList([StrObject(u"5"), StrObject(u"42")])])
     self.assertEqual(result._s, u"5|42")
开发者ID:markrwilliams,项目名称:typhon,代码行数:7,代码来源:test_data.py


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