소스 검색

Avoid creating a new list() during annotate.

Jelmer Vernooij 8 년 전
부모
커밋
52a1c9b370
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      dulwich/annotate.py

+ 1 - 1
dulwich/annotate.py

@@ -88,5 +88,5 @@ def annotate_lines(store, commit_id, path, order=ORDER_DATE, lines=None, follow=
 
     lines = []
     for (commit, entry) in reversed(revs):
-        lines = list(update_lines(lines, (commit, entry), store[entry.sha]))
+        lines = update_lines(lines, (commit, entry), store[entry.sha])
     return lines