mirror of
https://github.com/python/cpython.git
synced 2025-10-06 23:21:06 +00:00
bpo-43988: Use check disallow instantiation helper (GH-26392)
This commit is contained in:
parent
3e7ee02327
commit
fbff5387c3
14 changed files with 37 additions and 51 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue