This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import json | |
import sys | |
import collections | |
def dict_merge(dictionary, merge_dictionary): | |
for key, val in merge_dictionary.iteritems(): | |
if (key in dictionary and isinstance(dictionary[key], dict) | |
and isinstance(merge_dictionary[key], collections.Mapping)): | |
dict_merge(dictionary[key], merge_dictionary[key]) | |
else: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[MASTER] | |
# Specify a configuration file. | |
#rcfile= | |
# Python code to execute, usually for sys.path manipulation such as | |
# pygtk.require(). | |
#init-hook= | |
# Add files or directories to the blacklist. They should be base names, not |
NewerOlder