(self)
| 287 | self.__module_scope = module_scope |
| 288 | |
| 289 | def __repr__(self): |
| 290 | flags_str = '|'.join(self._flags_str()) |
| 291 | return f'<symbol {self.__name!r}: {self._scope_str()}, {flags_str}>' |
| 292 | |
| 293 | def _scope_str(self): |
| 294 | return _scopes_value_to_name.get(self.__scope) or str(self.__scope) |
nothing calls this directly
no test coverage detected