Files
UnrealEngine/Engine/Binaries/ThirdParty/Python3/Win64/Lib/test/test_longexp.py
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

11 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()