make file closing more robust
[python/dscho.git] / Lib / test / test_longexp.py
blob1b40d0298318916c639a13c7092f58cb7de744e1
1 import unittest
2 from test import support
4 class LongExpText(unittest.TestCase):
5 def test_longexp(self):
6 REPS = 65580
7 l = eval("[" + "2," * REPS + "]")
8 self.assertEqual(len(l), REPS)
10 def test_main():
11 support.run_unittest(LongExpText)
13 if __name__=="__main__":
14 test_main()