Return *True* if the block is a nested class or function.
(self)
| 126 | return bool(self._table.type == _symtable.TYPE_FUNCTION) |
| 127 | |
| 128 | def is_nested(self): |
| 129 | """Return *True* if the block is a nested class |
| 130 | or function.""" |
| 131 | return bool(self._table.nested) |
| 132 | |
| 133 | def has_children(self): |
| 134 | """Return *True* if the block has nested namespaces. |
no outgoing calls