Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/pydantic/pydantic
/ items
Method
items
pydantic/v1/utils.py:458–460 ·
view source on GitHub ↗
(self)
Source
from the content-addressed store, hash-verified
456
return
[self[k]
for
k in self]
457
458
def
items(self) -> Iterator[Tuple[str, Any]]:
459
for
k in self:
460
yield
k, self.get(k)
461
462
def
__iter__(self) -> Iterator[str]:
463
for
name in dir(self._obj):
Callers
15
color.py
File · 0.45
collect_config
Method · 0.45
collect_fields_and_class_vars
Method · 0.45
get_values_dict
Method · 0.45
update
Method · 0.45
__init__
Method · 0.45
from_annotated_attribute
Method · 0.45
merge_field_infos
Method · 0.45
_from_dataclass_field
Method · 0.45
_collect_metadata
Method · 0.45
__getattr__
Function · 0.45
ByteSize
Class · 0.45
Calls
1
get
Method · 0.95
Tested by
14
test_annotated_alias
Function · 0.36
test_base_config_equality_defaults_of_config_dict_class
Method · 0.36
test_config_wrapper_match
Function · 0.36
create_partial
Function · 0.36
foo
Function · 0.36
create_patch_model
Function · 0.36
make_fields_optional
Function · 0.36
test_limited_dict
Function · 0.36
_test_file
Function · 0.36
check_foobar
Method · 0.36
test_field_that_is_being_validated_is_excluded_from_validator_values
Function · 0.36
test_value_items
Function · 0.36