The following does what you said you want:
from collections import defaultdict
d1 = defaultdict(list, {'A': [4, 4, 4, 4], 'S': [1], 'C': [1, 2, 3, 4]})
print 'the d1 is ', d1
d2 = defaultdict(list, {'A': [4, 4, 4], 'B': [2], '[]': [4, 4], 'C': [1, 2, 3]})
print 'the d2 is ', d2
d3 = defaultdict(list, dict((key, set(value) if len(value) > 1 else value)
for key, value in d1.iteritems()))
d3.update((key, list(d3[key].union(set(value)) if key in d3 else value))
for key, value in d2.iteritems())
print
print 'the d3 is ', d3
Output:
the d1 is defaultdict(<type 'list'>, {'A': [4, 4, 4, 4], 'S': [1], 'C': [1, 2, 3, 4]})
the d2 is defaultdict(<type 'list'>, {'A': [4, 4, 4], 'C': [1, 2, 3], 'B': [2], '[]': [4, 4]})
the d3 is defaultdict(<type 'list'>, {'A': [4], 'S': [1], 'B': [2], 'C': [1, 2, 3, 4], '[]': [4, 4]})
Note that I added a list keyed with 'C' to both d1 and d2 to show what happens for a possibility not mentioned in your question -- so I don't know if it's what you'd want to happen or not.
[4, 4, 4, 4]and[4, 4, 4]to get[4]? What if I had to merge[1, 2, 3, 4]and[1, 2, 3]? What about[1, 2, 3, 4]and[5, 6, 7]? – Karl Knechtel Aug 4 '12 at 20:38setbased solutions should be able to deal with cases like those latter two you give just fine even though the OP doesn't have anything similar in their example. – martineau Aug 5 '12 at 2:32