diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-12 17:22:48 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-08-12 17:22:48 (GMT) |
commit | 4d83192ea05f5c14534edbff2b3a74bb19f01068 (patch) | |
tree | 001023504fc1c308d6f4910b209387b90e640f9e | |
parent | 320a1c0ff715b6c04034722393efe510973430ee (diff) | |
download | cpython-4d83192ea05f5c14534edbff2b3a74bb19f01068.zip cpython-4d83192ea05f5c14534edbff2b3a74bb19f01068.tar.gz cpython-4d83192ea05f5c14534edbff2b3a74bb19f01068.tar.bz2 |
Decreased memory requirements of new tests added in issue21448.
-rw-r--r-- | Lib/test/test_email/test_email.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_email/test_email.py b/Lib/test/test_email/test_email.py index 48730d8..c3ecd0ab 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) |