2 from test
import test_support
, string_tests
6 string_tests
.CommonTest
,
7 string_tests
.MixinStrUnicodeUserStringTest
,
8 string_tests
.MixinStrUserStringTest
13 # We don't need to propagate to str
14 def fixtype(self
, obj
):
17 def test_formatting(self
):
18 string_tests
.MixinStrUnicodeUserStringTest
.test_formatting(self
)
19 self
.assertRaises(OverflowError, '%c'.__mod
__, 0x1234)
22 suite
= unittest
.TestSuite()
23 suite
.addTest(unittest
.makeSuite(StrTest
))
24 test_support
.run_suite(suite
)
26 if __name__
== "__main__":