Move setting of ioready 'wait' earlier in call chain, to
[python/dscho.git] / Lib / test / test_str.py
blob1b261068c4d0a9d9c3b644a602208f1280f17762
1 import unittest
2 from test import test_support, string_tests
5 class StrTest(
6 string_tests.CommonTest,
7 string_tests.MixinStrUnicodeUserStringTest,
8 string_tests.MixinStrUserStringTest
9 ):
11 type2test = str
13 # We don't need to propagate to str
14 def fixtype(self, obj):
15 return obj
17 def test_main():
18 suite = unittest.TestSuite()
19 suite.addTest(unittest.makeSuite(StrTest))
20 test_support.run_suite(suite)
22 if __name__ == "__main__":
23 test_main()