summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Lib/test/test_unicode.py13
1 files changed, 4 insertions, 9 deletions
diff --git a/Lib/test/test_unicode.py b/Lib/test/test_unicode.py
index fdd90ca..f82a642 100644
--- a/Lib/test/test_unicode.py
+++ b/Lib/test/test_unicode.py
@@ -1155,20 +1155,15 @@ class UnicodeTest(
return
self.assertRaises(OverflowError, 't\tt\t'.expandtabs, sys.maxsize)
-
def test_raiseMemError(self):
# Ensure that the freelist contains a consistent object, even
# when a string allocation fails with a MemoryError.
# This used to crash the interpreter,
# or leak references when the number was smaller.
- try:
- "a" * (sys.maxsize // 2 - 100)
- except MemoryError:
- pass
- try:
- "a" * (sys.maxsize // 2 - 100)
- except MemoryError:
- pass
+ alloc = lambda: "a" * (sys.maxsize - 100)
+ self.assertRaises(MemoryError, alloc)
+ self.assertRaises(MemoryError, alloc)
+
def test_main():
support.run_unittest(__name__)