bpo-43988: Use check disallow instantiation helper (GH-26392)

This commit is contained in:
Erlend Egeberg Aasland 2021-05-27 08:43:52 +02:00 committed by GitHub
parent 3e7ee02327
commit fbff5387c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 37 additions and 51 deletions

View file

@ -43,8 +43,9 @@ class MiscTest(unittest.TestCase):
@support.cpython_only
def test_disallow_instantiation(self):
my_array = array.array("I")
tp = type(iter(my_array))
support.check_disallow_instantiation(self, tp, my_array)
support.check_disallow_instantiation(
self, type(iter(my_array)), my_array
)
@support.cpython_only
def test_immutable(self):