(self, name: str)
| 591 | return "".join(string) |
| 592 | |
| 593 | def get_object(self, name: str) -> Any: |
| 594 | attributes = name.split(".") |
| 595 | obj = eval(attributes.pop(0), cast(dict[str, Any], self.interp.locals)) |
| 596 | while attributes: |
| 597 | obj = inspection.getattr_safe(obj, attributes.pop(0)) |
| 598 | return obj |
| 599 | |
| 600 | @classmethod |
| 601 | def _funcname_and_argnum( |
no outgoing calls
no test coverage detected