2 from test
import test_support
4 class LongExpText(unittest
.TestCase
):
5 def test_longexp(self
):
7 l
= eval("[" + "2," * REPS
+ "]")
8 self
.assertEqual(len(l
), REPS
)
11 test_support
.run_unittest(LongExpText
)
13 if __name__
=="__main__":