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

Method _flags_str

Lib/symtable.py:296–299  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

294 return _scopes_value_to_name.get(self.__scope) or str(self.__scope)
295
296 def _flags_str(self):
297 for flagname, flagvalue in _flags:
298 if self.__flags & flagvalue == flagvalue:
299 yield flagname
300
301 def get_name(self):
302 """Return a name of a symbol.

Callers 2

__repr__Method · 0.95
print_symbolsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected