Lines Matching refs:right
79 def Merge(left, right):
83 TypeError: |left| and |right| cannot be merged.
86 - if both |left| and |right| are dictionaries, they are merged recursively.
87 - if both |left| and |right| are lists, the result is a list containing
89 - if both |left| and |right| are simple value, |right| is returned.
94 if isinstance(right, dict):
96 for key, value in right.iteritems():
105 if isinstance(right, list):
106 return left + right
110 if isinstance(right, dict):
112 elif isinstance(right, list):
115 return right