From: Serhiy Storchaka Date: Tue, 12 Aug 2014 17:22:48 +0000 (+0300) Subject: Decreased memory requirements of new tests added in issue21448. X-Git-Tag: v3.4.2rc1~125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4d83192ea05f5c14534edbff2b3a74bb19f01068;p=python Decreased memory requirements of new tests added in issue21448. --- diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py index 48730d8e92..c3ecd0ab22 100644 --- a/Lib/test/test_email/test_email.py +++ b/Lib/test/test_email/test_email.py @@ -3406,7 +3406,8 @@ class TestFeedParsers(TestEmailBase): self.assertEqual(m.items(), [('a', ''), ('b', '\x85'), ('c', '')]) def test_long_lines(self): - M, N = 1000, 100000 + # Expected peak memory use on 32-bit platform: 6*N*M bytes. + M, N = 1000, 20000 m = self.parse(['a:b\n\n'] + ['x'*M] * N) self.assertEqual(m.items(), [('a', 'b')]) self.assertEqual(m.get_payload(), 'x'*M*N)