mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-07 15:03:34 +00:00
0c4c56ff39
README.cosmo contains the necessary links.
10 lines
233 B
Python
10 lines
233 B
Python
import unittest
|
|
|
|
class LongExpText(unittest.TestCase):
|
|
def test_longexp(self):
|
|
REPS = 65580
|
|
l = eval("[" + "2," * REPS + "]")
|
|
self.assertEqual(len(l), REPS)
|
|
|
|
if __name__ == "__main__":
|
|
unittest.main()
|