We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3f36dcd + cc2c46b commit bc81e1fCopy full SHA for bc81e1f
1 file changed
extra_tests/not_impl_gen.py
@@ -31,7 +31,9 @@ def attr_is_not_inherited(type_, attr):
31
32
33
def extra_info(obj):
34
- if callable(obj):
+ # RustPython doesn't support __text_signature__ for getting signatures of builtins
35
+ # https://github.com/RustPython/RustPython/issues/2410
36
+ if callable(obj) and not inspect._signature_is_builtin(obj):
37
try:
38
sig = str(inspect.signature(obj))
39
# remove function memory addresses
0 commit comments