summaryrefslogtreecommitdiff
path: root/lib/python2.7/test/test_longexp.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/test/test_longexp.py')
-rw-r--r--lib/python2.7/test/test_longexp.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/lib/python2.7/test/test_longexp.py b/lib/python2.7/test/test_longexp.py
deleted file mode 100644
index dd222a1..0000000
--- a/lib/python2.7/test/test_longexp.py
+++ /dev/null
@@ -1,14 +0,0 @@
-import unittest
-from test import test_support
-
-class LongExpText(unittest.TestCase):
- def test_longexp(self):
- REPS = 65580
- l = eval("[" + "2," * REPS + "]")
- self.assertEqual(len(l), REPS)
-
-def test_main():
- test_support.run_unittest(LongExpText)
-
-if __name__=="__main__":
- test_main()