(root)/
Python-3.11.7/
Lib/
test/
test_longexp.py
       1  import unittest
       2  
       3  class ESC[4;38;5;81mLongExpText(ESC[4;38;5;149munittestESC[4;38;5;149m.ESC[4;38;5;149mTestCase):
       4      def test_longexp(self):
       5          REPS = 65580
       6          l = eval("[" + "2," * REPS + "]")
       7          self.assertEqual(len(l), REPS)
       8  
       9  if __name__ == "__main__":
      10      unittest.main()