MCPcopy
hub / github.com/sphinx-doc/sphinx / items

Method items

sphinx/environment/__init__.py:1147–1149  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1145 return frozenset(self.__attr_map.keys() | self._extension_data.keys())
1146
1147 def items(self) -> Iterable[tuple[str, Any]]:
1148 for key in self.keys():
1149 yield key, self[key]
1150
1151 def values(self) -> Iterable[Any]:
1152 for key in self.keys():

Callers 15

is_serializableFunction · 0.45
__iter__Method · 0.45
__getstate__Method · 0.45
__setstate__Method · 0.45
check_confval_typesFunction · 0.45
setupFunction · 0.45
merge_doctreesFunction · 0.45
get_optionsMethod · 0.45
_load_builtin_themesMethod · 0.45
_convert_theme_confFunction · 0.45
_migrate_conf_to_tomlFunction · 0.45

Calls 1

keysMethod · 0.95

Tested by 12

input_Function · 0.36
sortedMethod · 0.36
assert_is_sortedFunction · 0.36
parse_argumentsFunction · 0.36
_nodeMethod · 0.36
test_get_items_summaryFunction · 0.36
test_text_wrapperFunction · 0.36