Message416664
the.
```
import inspect
inspect.isfunction
```
does not consider a
```
builtin_function_or_method
```
as a function.
for example,
```
inspect.isfunction(abs)
```
gives,
```
False
```
in the background even the builtin `abs` is a function, so shouldn't it return True?
the way this check is implemented is by matching the type of a builtin_function_or_method with,
```
type(len)
```
and since, `type(len)` is `builtin_function_or_method`, so, the `inspect.isfunction` check gives False.
But in my opinion, it should return True, even for builtin functions or methods. |
|
Date |
User |
Action |
Args |
2022-04-04 11:51:09 | apostofes | set | recipients:
+ apostofes |
2022-04-04 11:51:09 | apostofes | set | messageid: <1649073069.64.0.34213734425.issue47214@roundup.psfhosted.org> |
2022-04-04 11:51:09 | apostofes | link | issue47214 messages |
2022-04-04 11:51:09 | apostofes | create | |
|