Return all definitions within the module (including nested). This doesn't include imported definitions.
(self, *, impl_only: bool = False)
| 538 | self.raw_data = None |
| 539 | |
| 540 | def local_definitions(self, *, impl_only: bool = False) -> Iterator[Definition]: |
| 541 | """Return all definitions within the module (including nested). |
| 542 | |
| 543 | This doesn't include imported definitions. |
| 544 | """ |
| 545 | return local_definitions(self.names, self.fullname, impl_only=impl_only) |
| 546 | |
| 547 | @property |
| 548 | def name(self) -> str: |
no test coverage detected