We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fee5256 commit a110148Copy full SHA for a110148
1 file changed
Lib/test/test_inspect/test_inspect.py
@@ -5788,9 +5788,11 @@ def test_types_module_has_signatures(self):
5788
'GeneratorType': {'throw'},
5789
'FrameLocalsProxyType': {'setdefault', 'pop', 'get'}
5790
}
5791
+ no_signature = {'FrameLocalsProxyType'}
5792
self._test_module_has_signatures(types,
5793
unsupported_signature=unsupported_signature,
- methods_no_signature=methods_no_signature)
5794
+ methods_no_signature=methods_no_signature,
5795
+ no_signature=no_signature)
5796
5797
def test_sys_module_has_signatures(self):
5798
no_signature = {'getsizeof', 'set_asyncgen_hooks'}
0 commit comments