storage.py 文件源码

python
阅读 26 收藏 0 点赞 0 评论 0

项目:kibitzr 作者: kibitzr 项目源码 文件源码
def default(self):
        """Return last changes in truncated unified diff format"""
        output = ensure_unicode(self.git.log(
            '-1',
            '-p',
            '--no-color',
            '--format=%s',
        ).stdout)
        lines = output.splitlines()
        return u'\n'.join(
            itertools.chain(
                lines[:1],
                itertools.islice(
                    itertools.dropwhile(
                        lambda x: not x.startswith('+++'),
                        lines[1:],
                    ),
                    1,
                    None,
                ),
            )
        )
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号