Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: 2d1a50ca13309d10517d3eac59b90fdfa156b8a2 authored by cvs2svn on 15 October 2004, 08:07:21 UTC
This commit was manufactured by cvs2svn to create tag 'r24b1'.
Tip revision: 2d1a50c
test_str.py
import unittest
from test import test_support, string_tests


class StrTest(
    string_tests.CommonTest,
    string_tests.MixinStrUnicodeUserStringTest,
    string_tests.MixinStrUserStringTest,
    string_tests.MixinStrUnicodeTest,
    ):

    type2test = str

    # We don't need to propagate to str
    def fixtype(self, obj):
        return obj

    def test_formatting(self):
        string_tests.MixinStrUnicodeUserStringTest.test_formatting(self)
        self.assertRaises(OverflowError, '%c'.__mod__, 0x1234)

def test_main():
    test_support.run_unittest(StrTest)

if __name__ == "__main__":
    test_main()
back to top