def __imul__(self, that):
"""
Increase the length of the list by appending *that* shallow copies of
each item.
"""
values = reduce(iadd, self._lists, []) * that
self._clear()
self._update(values)
return self
sortedlist.py 文件源码
python
阅读 28
收藏 0
点赞 0
评论 0
评论列表
文章目录