summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_bytes.py
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-11-25 13:52:04 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-11-25 13:52:04 (GMT)
commitf9afda57ad7d0394531982b2c9de8301c5a54e45 (patch)
tree8a09bb1aa816b4daf6777e630333dfece309cdb5 /Lib/test/test_bytes.py
parentc5f3b4285a8f3f90305d777a88a856a623c22cb1 (diff)
parent15095800a381a396cbc077cb5320203a8feae51a (diff)
downloadcpython-f9afda57ad7d0394531982b2c9de8301c5a54e45.zip
cpython-f9afda57ad7d0394531982b2c9de8301c5a54e45.tar.gz
cpython-f9afda57ad7d0394531982b2c9de8301c5a54e45.tar.bz2
Issue #24731: Fixed crash on converting objects with special methods
__bytes__, __trunc__, and __float__ returning instances of subclasses of bytes, int, and float to subclasses of bytes, int, and float correspondingly.
Diffstat (limited to 'Lib/test/test_bytes.py')
-rw-r--r--Lib/test/test_bytes.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/Lib/test/test_bytes.py b/Lib/test/test_bytes.py
index 53a80f4..8158f78 100644
--- a/Lib/test/test_bytes.py
+++ b/Lib/test/test_bytes.py
@@ -779,6 +779,14 @@ class BytesTest(BaseBytesTest, unittest.TestCase):
def __index__(self):
return 42
self.assertEqual(bytes(A()), b'a')
+ # Issue #24731
+ class A:
+ def __bytes__(self):
+ return OtherBytesSubclass(b'abc')
+ self.assertEqual(bytes(A()), b'abc')
+ self.assertIs(type(bytes(A())), OtherBytesSubclass)
+ self.assertEqual(BytesSubclass(A()), b'abc')
+ self.assertIs(type(BytesSubclass(A())), BytesSubclass)
# Test PyBytes_FromFormat()
def test_from_format(self):
@@ -1552,6 +1560,9 @@ class ByteArraySubclass(bytearray):
class BytesSubclass(bytes):
pass
+class OtherBytesSubclass(bytes):
+ pass
+
class ByteArraySubclassTest(SubclassTest, unittest.TestCase):
type2test = bytearray
subclass2test = ByteArraySubclass