@@ -788,6 +788,8 @@ def throw(self, typ, val=None, tb=None):
788
788
def __await__ (self ):
789
789
yield
790
790
791
+ self .validate_abstract_methods (Awaitable , '__await__' )
792
+
791
793
non_samples = [None , int (), gen (), object ()]
792
794
for x in non_samples :
793
795
self .assertNotIsInstance (x , Awaitable )
@@ -838,6 +840,8 @@ def throw(self, typ, val=None, tb=None):
838
840
def __await__ (self ):
839
841
yield
840
842
843
+ self .validate_abstract_methods (Coroutine , '__await__' , 'send' , 'throw' )
844
+
841
845
non_samples = [None , int (), gen (), object (), Bar ()]
842
846
for x in non_samples :
843
847
self .assertNotIsInstance (x , Coroutine )
@@ -1921,6 +1925,7 @@ def test_ByteString(self):
1921
1925
self .assertFalse (issubclass (sample , ByteString ))
1922
1926
self .assertNotIsInstance (memoryview (b"" ), ByteString )
1923
1927
self .assertFalse (issubclass (memoryview , ByteString ))
1928
+ self .validate_abstract_methods (ByteString , '__getitem__' , '__len__' )
1924
1929
1925
1930
def test_MutableSequence (self ):
1926
1931
for sample in [tuple , str , bytes ]:
0 commit comments