summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2018-10-21 12:25:53 (GMT)
committerGitHub <noreply@github.com>2018-10-21 12:25:53 (GMT)
commit914f9a078f997e58cfcfabcbb30fafdd1f277bef (patch)
treea9b35e53a19dadceb5b426cd99be74497d7d1ced /Lib
parenta323cdcb33c8c856e5668acfb2c67ab5198672c4 (diff)
downloadcpython-914f9a078f997e58cfcfabcbb30fafdd1f277bef.zip
cpython-914f9a078f997e58cfcfabcbb30fafdd1f277bef.tar.gz
cpython-914f9a078f997e58cfcfabcbb30fafdd1f277bef.tar.bz2
bpo-34973: Fix crash in bytes constructor. (GH-9841)
Constructing bytes from mutating list could cause a crash.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_bytes.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index b9c5b62..145411e 100644
--- a/Lib/test/test_bytes.py
+++ b/Lib/test/test_bytes.py
@@ -113,6 +113,23 @@ class BaseBytesTest:
b = self.type2test([1, 2, 3])
self.assertEqual(b, b"\x01\x02\x03")
+ def test_from_mutating_list(self):
+ # Issue #34973: Crash in bytes constructor with mutating list.
+ class X:
+ def __index__(self):
+ a.clear()
+ return 42
+ a = [X(), X()]
+ self.assertEqual(bytes(a), b'*')
+
+ class Y:
+ def __index__(self):
+ if len(a) < 1000:
+ a.append(self)
+ return 42
+ a = [Y()]
+ self.assertEqual(bytes(a), b'*' * 1000) # should not crash
+
def test_from_index(self):
b = self.type2test([Indexable(), Indexable(1), Indexable(254),
Indexable(255)])