Function
merge_dicts
(x: Dict[K, V], y: Dict[K, V])
Source from the content-addressed store, hash-verified
| 36 | |
| 37 | |
| 38 | def merge_dicts(x: Dict[K, V], y: Dict[K, V]) -> Dict[K, V]: |
| 39 | z = x.copy() |
| 40 | z.update(y) |
| 41 | return z |
| 42 | |
| 43 | |
| 44 | class Shell(object): |
Tested by
no test coverage detected