##// END OF EJS Templates
typing: fix a syntax error in mercurial/cext/bdiff.pyi...
Matt Harbison -
r50491:b8389533 default
parent child Browse files
Show More
@@ -5,7 +5,7 b' from typing import ('
5
5
6 version: int
6 version: int
7
7
8 def bdiff(a: bytes, b: bytes): bytes
8 def bdiff(a: bytes, b: bytes) -> bytes: ...
9 def blocks(a: bytes, b: bytes) -> List[Tuple[int, int, int, int]]: ...
9 def blocks(a: bytes, b: bytes) -> List[Tuple[int, int, int, int]]: ...
10 def fixws(s: bytes, allws: bool) -> bytes: ...
10 def fixws(s: bytes, allws: bool) -> bytes: ...
11 def splitnewlines(text: bytes) -> List[bytes]: ...
11 def splitnewlines(text: bytes) -> List[bytes]: ...
General Comments 0
You need to be logged in to leave comments. Login now