(self)
| 2006 | return False |
| 2007 | |
| 2008 | def keys(self) -> KeysView[str]: |
| 2009 | if self._symbol_cache is None: |
| 2010 | self._build_symbol_cache() |
| 2011 | assert self._symbol_cache is not None |
| 2012 | return self._symbol_cache.keys() |
| 2013 | |
| 2014 | def items(self) -> ItemsView[str, List['_types.CoreSymbol']]: |
| 2015 | if self._symbol_cache is None: |
nothing calls this directly
no test coverage detected