summaryrefslogtreecommitdiff
path: root/Lib/test/test_email/test_email.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-08-12 20:22:48 +0300
committerSerhiy Storchaka <storchaka@gmail.com>2014-08-12 20:22:48 +0300
commit4d83192ea05f5c14534edbff2b3a74bb19f01068 (patch)
tree001023504fc1c308d6f4910b209387b90e640f9e /Lib/test/test_email/test_email.py
parent320a1c0ff715b6c04034722393efe510973430ee (diff)
downloadcpython-git-4d83192ea05f5c14534edbff2b3a74bb19f01068.tar.gz
Decreased memory requirements of new tests added in issue21448.
Diffstat (limited to 'Lib/test/test_email/test_email.py')
-rw-r--r--Lib/test/test_email/test_email.py3
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 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)