Staging
v0.5.1
https://github.com/python/cpython
Revision a7c07d320b528dbc991f5ef2a8791026e784ea1f authored by Terry Jan Reedy on 08 February 2014, 14:02:26 UTC, committed by Terry Jan Reedy on 08 February 2014, 14:02:26 UTC
1 parent 98585b6
Raw File
Tip revision: a7c07d320b528dbc991f5ef2a8791026e784ea1f authored by Terry Jan Reedy on 08 February 2014, 14:02:26 UTC
Issue #20406: Use Python application icons for Idle window title bars.
Tip revision: a7c07d3
test_longexp.py
import unittest
from test import support

class LongExpText(unittest.TestCase):
    def test_longexp(self):
        REPS = 65580
        l = eval("[" + "2," * REPS + "]")
        self.assertEqual(len(l), REPS)

def test_main():
    support.run_unittest(LongExpText)

if __name__=="__main__":
    test_main()
back to top