Skip to content

Commit a110148

Browse files
committed
Use a workaround for the tests.
1 parent fee5256 commit a110148

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Lib/test/test_inspect/test_inspect.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5788,9 +5788,11 @@ def test_types_module_has_signatures(self):
57885788
'GeneratorType': {'throw'},
57895789
'FrameLocalsProxyType': {'setdefault', 'pop', 'get'}
57905790
}
5791+
no_signature = {'FrameLocalsProxyType'}
57915792
self._test_module_has_signatures(types,
57925793
unsupported_signature=unsupported_signature,
5793-
methods_no_signature=methods_no_signature)
5794+
methods_no_signature=methods_no_signature,
5795+
no_signature=no_signature)
57945796

57955797
def test_sys_module_has_signatures(self):
57965798
no_signature = {'getsizeof', 'set_asyncgen_hooks'}

0 commit comments

Comments
 (0)