Return a list of the nested symbol tables.
(self)
| 166 | if st.name == name] |
| 167 | |
| 168 | def get_children(self): |
| 169 | """Return a list of the nested symbol tables. |
| 170 | """ |
| 171 | return [_newSymbolTable(st, self._filename) |
| 172 | for st in self._table.children] |
| 173 | |
| 174 | |
| 175 | def _get_scope(flags): # like _PyST_GetScope() |