Improve efficiency of merge_hash

This is related to #14559, but only the part for Ansible v2.0

This commit makes merging empty dicts, or equal dicts more efficient.

I noticed that while debugging merge_hash a lot of merges related to empty dictionaries and sometimes also identical dictionaries.
pull/14899/head
Dag Wieers 9 years ago committed by James Cammarata
parent 169d3ca51e
commit 91e72b8e3b

@ -74,6 +74,12 @@ def merge_hash(a, b):
"""
_validate_mutable_mappings(a, b)
# if a is empty or equal to b, return b
if a == {} or a == b:
return b.copy()
# if b is empty the below unfolds quickly
result = a.copy()
# next, iterate over b keys and values

Loading…
Cancel
Save