Skip to content

Cleanup `MappingNode` key/values/items accessor

Description

This removes node_items, and node_keys from the yaml API and replaces it by

  • MappingNode.keys()
  • MappingNode.values()
  • MappingNode.items()

which follow dict semantics

Merge request reports