def __sub__()

in common/timestamp.py [0:0]


    def __sub__(self, other):  # pyre-fixme
        if isinstance(other, Timestamp):
            return Seconds(self.unixtime - other.unixtime)
        else:
            return Timestamp(self.unixtime - other.seconds)