Return *True* if the symbol is local.
(self)
| 335 | return bool(self.__scope == GLOBAL_EXPLICIT) |
| 336 | |
| 337 | def is_local(self): |
| 338 | """Return *True* if the symbol is local. |
| 339 | """ |
| 340 | return bool(self.__scope in (LOCAL, CELL) |
| 341 | or (self.__module_scope and self.__flags & DEF_BOUND)) |
| 342 | |
| 343 | def is_annotated(self): |
| 344 | """Return *True* if the symbol is annotated. |
no outgoing calls