From 398bd90b8e3b04d7c07d8a2eb16a55a1ca6f9729 Mon Sep 17 00:00:00 2001 From: Shantanu <12621235+hauntsaninja@users.noreply.github.com> Date: Sun, 29 Jan 2023 16:49:49 -0800 Subject: [PATCH] whatthepatch: add parse_git_binary_diff (#9616) Added in 1.0.4 https://github.com/cscorley/whatthepatch/pull/whatthepatch Fixes #9615 --- stubs/whatthepatch/whatthepatch/patch.pyi | 1 + 1 file changed, 1 insertion(+) diff --git a/stubs/whatthepatch/whatthepatch/patch.pyi b/stubs/whatthepatch/whatthepatch/patch.pyi index 9e03e3d91..669e187a4 100644 --- a/stubs/whatthepatch/whatthepatch/patch.pyi +++ b/stubs/whatthepatch/whatthepatch/patch.pyi @@ -76,3 +76,4 @@ def parse_unified_diff(text: str | Iterable[str]) -> list[Change] | None: ... def parse_context_diff(text: str | Iterable[str]) -> list[Change] | None: ... def parse_ed_diff(text: str | Iterable[str]) -> list[Change] | None: ... def parse_rcs_ed_diff(text: str | Iterable[str]) -> list[Change] | None: ... +def parse_git_binary_diff(text: str | Iterable[str]) -> list[Change]: ...