Skip to content

Commit a5d3e1d

Browse files
gh-98513: Test abstract methods of some collections types (GH-98516)
(cherry picked from commit a309ad9) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
1 parent d2cb0f9 commit a5d3e1d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Lib/test/test_collections.py

+5
Original file line numberDiff line numberDiff line change
@@ -788,6 +788,8 @@ def throw(self, typ, val=None, tb=None):
788788
def __await__(self):
789789
yield
790790

791+
self.validate_abstract_methods(Awaitable, '__await__')
792+
791793
non_samples = [None, int(), gen(), object()]
792794
for x in non_samples:
793795
self.assertNotIsInstance(x, Awaitable)
@@ -838,6 +840,8 @@ def throw(self, typ, val=None, tb=None):
838840
def __await__(self):
839841
yield
840842

843+
self.validate_abstract_methods(Coroutine, '__await__', 'send', 'throw')
844+
841845
non_samples = [None, int(), gen(), object(), Bar()]
842846
for x in non_samples:
843847
self.assertNotIsInstance(x, Coroutine)
@@ -1921,6 +1925,7 @@ def test_ByteString(self):
19211925
self.assertFalse(issubclass(sample, ByteString))
19221926
self.assertNotIsInstance(memoryview(b""), ByteString)
19231927
self.assertFalse(issubclass(memoryview, ByteString))
1928+
self.validate_abstract_methods(ByteString, '__getitem__', '__len__')
19241929

19251930
def test_MutableSequence(self):
19261931
for sample in [tuple, str, bytes]:

0 commit comments

Comments
 (0)