(self)
| 324 | return ".".join(parts) |
| 325 | |
| 326 | def reportinfo(self) -> tuple[os.PathLike[str] | str, int | None, str]: |
| 327 | # XXX caching? |
| 328 | path, lineno = getfslineno(self.obj) |
| 329 | modpath = self.getmodpath() |
| 330 | return path, lineno, modpath |
| 331 | |
| 332 | |
| 333 | # As an optimization, these builtin attribute names are pre-ignored when |
nothing calls this directly
no test coverage detected