Return *True* if the symbol is annotated.
(self)
| 341 | or (self.__module_scope and self.__flags & DEF_BOUND)) |
| 342 | |
| 343 | def is_annotated(self): |
| 344 | """Return *True* if the symbol is annotated. |
| 345 | """ |
| 346 | return bool(self.__flags & DEF_ANNOT) |
| 347 | |
| 348 | def is_free(self): |
| 349 | """Return *True* if a referenced symbol is |