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


Python _testcapi.getargs_s_hash方法代码示例

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


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

示例1: test_s_hash

# 需要导入模块: import _testcapi [as 别名]
# 或者: from _testcapi import getargs_s_hash [as 别名]
def test_s_hash(self):
        from _testcapi import getargs_s_hash
        self.assertEqual(getargs_s_hash('abc\xe9'), 'abc\xe9')
        self.assertEqual(getargs_s_hash(u'abc'), 'abc')
        self.assertEqual(getargs_s_hash('nul:\0'), 'nul:\0')
        self.assertEqual(getargs_s_hash(u'nul:\0'), 'nul:\0')
        self.assertRaises(TypeError, getargs_s_hash, bytearray('bytearray'))
        self.assertRaises(TypeError, getargs_s_hash, memoryview('memoryview'))
        with test_support.check_py3k_warnings():
            self.assertEqual(getargs_s_hash(buffer('abc\xe9')), 'abc\xe9')
            self.assertEqual(getargs_s_hash(buffer(u'abc\xe9')),
                             str(buffer(u'abc\xe9')))
        self.assertRaises(TypeError, getargs_s_hash, None) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:15,代码来源:test_getargs2.py

示例2: test_pep393_utf8_caching_bug

# 需要导入模块: import _testcapi [as 别名]
# 或者: from _testcapi import getargs_s_hash [as 别名]
def test_pep393_utf8_caching_bug(self):
        # Issue #25709: Problem with string concatenation and utf-8 cache
        from _testcapi import getargs_s_hash
        for k in 0x24, 0xa4, 0x20ac, 0x1f40d:
            s = ''
            for i in range(5):
                # Due to CPython specific optimization the 's' string can be
                # resized in-place.
                s += chr(k)
                # Parsing with the "s#" format code calls indirectly
                # PyUnicode_AsUTF8AndSize() which creates the UTF-8
                # encoded string cached in the Unicode object.
                self.assertEqual(getargs_s_hash(s), chr(k).encode() * (i + 1))
                # Check that the second call returns the same result
                self.assertEqual(getargs_s_hash(s), chr(k).encode() * (i + 1)) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:17,代码来源:test_unicode.py

示例3: test_s_hash

# 需要导入模块: import _testcapi [as 别名]
# 或者: from _testcapi import getargs_s_hash [as 别名]
def test_s_hash(self):
        from _testcapi import getargs_s_hash
        self.assertEqual(getargs_s_hash('abc\xe9'), b'abc\xc3\xa9')
        self.assertEqual(getargs_s_hash('nul:\0'), b'nul:\0')
        self.assertEqual(getargs_s_hash(b'bytes'), b'bytes')
        self.assertRaises(TypeError, getargs_s_hash, bytearray(b'bytearray'))
        self.assertRaises(TypeError, getargs_s_hash, memoryview(b'memoryview'))
        self.assertRaises(TypeError, getargs_s_hash, None) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:10,代码来源:test_getargs2.py


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