diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-24 20:08:51 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-05-24 20:08:51 (GMT) |
commit | 0673088dedc3403652fa759d2e847b6a044196d1 (patch) | |
tree | 971545af695273d9373201b225d5bda6d34d8614 | |
parent | 37484dc324b442d1fdab10f05f657cef80845279 (diff) | |
download | cpython-0673088dedc3403652fa759d2e847b6a044196d1.zip cpython-0673088dedc3403652fa759d2e847b6a044196d1.tar.gz cpython-0673088dedc3403652fa759d2e847b6a044196d1.tar.bz2 |
Fix memory constraint for test_decodeascii
-rw-r--r-- | Lib/test/test_bigmem.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_bigmem.py b/Lib/test/test_bigmem.py index c560167..e26b5c3 100644 --- a/Lib/test/test_bigmem.py +++ b/Lib/test/test_bigmem.py @@ -118,7 +118,7 @@ class StrTest(unittest.TestCase): except MemoryError: pass # acceptable on 32-bit - @precisionbigmemtest(size=_2G-1, memuse=2) + @precisionbigmemtest(size=_2G-1, memuse=4) def test_decodeascii(self, size): return self.basic_encode_test(size, 'ascii', c='A') |