Python sorts tuples in lexicographic order:
first the first two items are compared, and if they differ this
determines the outcome of the comparison; if they are equal, the next
two items are compared, and so on, until either sequence is exhausted.
Take for example,
In [33]: import heapq
In [34]: A = [(1,100,2)]
In [35]: B = [(2,0,0)]
In [40]: list(heapq.merge(A,B))
Out[40]: [(1, 100, 2), (2, 0, 0)]
In [41]: (1, 100, 2) < (2, 0, 0)
Out[41]: True
Thus, it is not necessarily true that
a >= x and b >= y and c >= z
It is possible to use heapq on any collection of orderable objects, including instances of a custom class. Using a custom class, you can arrange for any kind of ordering rule you like. For example,
class MyTuple(tuple):
def __lt__(self, other):
return all(a < b for a, b in zip(self, other))
def __eq__(self, other):
return (len(self) == len(other)
and all(a == b for a, b in zip(self, other)))
def __gt__(self, other):
return not (self < other or self == other)
def __le__(self, other):
return self < other or self == other
def __ge__(self, other):
return not self < other
A = [MyTuple((1,100,2))]
B = [MyTuple((2,0,0))]
print(list(heapq.merge(A,B)))
# [(2, 0, 0), (1, 100, 2)]
Note, however, that although this changes our notion of < for MyTuple, the result returned by heapq.merge is not guaranteed to satisfy
a <= x and b <= y and c <= z
To do this, we'd have to first remove all items from A and B which are mutually unorderable.