Staging
v0.8.1
Revision d01ae1b22330992eadc7b2a0842ead544f7e507d authored by Miss Islington (bot) on 03 February 2020, 17:17:17 UTC, committed by GitHub on 03 February 2020, 17:17:17 UTC
(cherry picked from commit 5807efd4c396d5718325e21f5a14e324a77ff77c)

Co-authored-by: Adorilson Bezerra <adorilson@gmail.com>
1 parent db2f311
Raw File
test_longexp.py
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()
back to top