MCPcopy Index your code
hub / github.com/python/cpython / __check_children

Method __check_children

Lib/symtable.py:163–166  ·  view source on GitHub ↗
(self, name)

Source from the content-addressed store, hash-verified

161 return [self.lookup(ident) for ident in self.get_identifiers()]
162
163 def __check_children(self, name):
164 return [_newSymbolTable(st, self._filename)
165 for st in self._table.children
166 if st.name == name]
167
168 def get_children(self):
169 """Return a list of the nested symbol tables.

Callers 1

lookupMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected