mercurial/mdiff.py
changeset 52644 e627cc25b6f3
parent 51960 d7f17819ae9e
--- a/mercurial/mdiff.py	Sun Jan 05 22:23:31 2025 -0500
+++ b/mercurial/mdiff.py	Sun Jan 05 22:26:16 2025 -0500
@@ -529,8 +529,7 @@
                 if not has_hunks:
                     has_hunks = True
                     yield True
-                for x in yieldhunk(hunk):
-                    yield x
+                yield from yieldhunk(hunk)
         if prev:
             # we've joined the previous hunk, record the new ending points.
             hunk = (hunk[0], a2, hunk[2], b2, hunk[4])
@@ -547,8 +546,7 @@
         if not has_hunks:
             has_hunks = True
             yield True
-        for x in yieldhunk(hunk):
-            yield x
+        yield from yieldhunk(hunk)
     elif not has_hunks:
         yield False