(self, obj: object)
| 540 | return self.get_type_fullname(type(obj)) |
| 541 | |
| 542 | def is_function(self, obj: object) -> bool: |
| 543 | if self.is_c_module: |
| 544 | return inspect.isbuiltin(obj) |
| 545 | else: |
| 546 | return inspect.isfunction(obj) |
| 547 | |
| 548 | def is_method(self, class_info: ClassInfo, name: str, obj: object) -> bool: |
| 549 | if self.is_c_module: |