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

Method get_identifiers

Lib/symtable.py:138–141  ·  view source on GitHub ↗

Return a view object containing the names of symbols in the table.

(self)

Source from the content-addressed store, hash-verified

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.
140 """
141 return self._table.symbols.keys()
142
143 def lookup(self, name):
144 """Lookup a *name* in the table.

Callers 3

get_symbolsMethod · 0.95
__idents_matchingMethod · 0.45
print_symbolsFunction · 0.45

Calls 1

keysMethod · 0.45

Tested by

no test coverage detected