whatthepatch: add parse_git_binary_diff (#9616)

Added in 1.0.4
https://github.com/cscorley/whatthepatch/pull/whatthepatch

Fixes #9615
This commit is contained in:
Shantanu
2023-01-29 16:49:49 -08:00
committed by GitHub
parent 1b5bd63f78
commit 398bd90b8e

View File

@@ -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]: ...