##// 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
@@ -1,12 +1,12 b''
1 from typing import (
1 from typing import (
2 List,
2 List,
3 Tuple,
3 Tuple,
4 )
4 )
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]: ...
12 def xdiffblocks(a: bytes, b: bytes) -> List[Tuple[int, int, int, int]]: ...
12 def xdiffblocks(a: bytes, b: bytes) -> List[Tuple[int, int, int, int]]: ...
General Comments 0
You need to be logged in to leave comments. Login now