Return *True* if the block has nested namespaces.
(self)
| 131 | return bool(self._table.nested) |
| 132 | |
| 133 | def has_children(self): |
| 134 | """Return *True* if the block has nested namespaces. |
| 135 | """ |
| 136 | return bool(self._table.children) |
| 137 | |
| 138 | def get_identifiers(self): |
| 139 | """Return a view object containing the names of symbols in the table. |
no outgoing calls