def __mul__(self, that):
"""
Return a new sorted list containing *that* shallow copies of each item
in SortedListWithKey.
"""
values = reduce(iadd, self._lists, []) * that
return self.__class__(values, key=self._key, load=self._load)
评论列表
文章目录