Skip to content

Instantly share code, notes, and snippets.

@macro1
macro1 / time_dict_merge.py
Last active February 23, 2016 06:29 — forked from treyhunner/time_dict_merge.py
Test performance of different dictionary merging functions in Python
"""
Results:
multiple_update: 92 ms
copy_and_update: 92 ms
dict_constructor: 93 ms
kwargs_hack: 93 ms
dict_comprehension: 91 ms
concatenate_items: 327 ms
union_items: 325 ms