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
):
18 suite
= unittest
.TestSuite()
19 suite
.addTest(unittest
.makeSuite(StrTest
))
20 test_support
.run_suite(suite
)
22 if __name__
== "__main__":