Explorar o código

Avoid creating a new list() during annotate.

Jelmer Vernooij %!s(int64=8) %!d(string=hai) anos
pai
achega
52a1c9b370
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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