(add_from, add_to)
| 217 | |
| 218 | |
| 219 | def add_dict_to_dict(add_from, add_to): |
| 220 | for key in add_from: |
| 221 | if key in add_to: |
| 222 | add_to[key].extend(add_from[key]) |
| 223 | else: |
| 224 | add_to[key] = add_from[key] |
| 225 | |
| 226 | |
| 227 | # Exclude some libraries in contrib from the documentation altogether. |
no test coverage detected