Staging
v0.8.1
Revision 685b806549cc956aeeb3a57fe15ee5a4d1704aed authored by Miss Islington (bot) on 07 June 2019, 06:37:32 UTC, committed by GitHub on 07 June 2019, 06:37:32 UTC

This avoids the search dialogs being hidden behind the editor window.
(cherry picked from commit 554450fb4e95066e825bdb4a2d544a490daeebdc)

Co-authored-by: Tal Einat <taleinat@gmail.com>
1 parent dc20fc4
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