mirror of
https://github.com/git/git
synced 2024-11-05 04:53:18 +00:00
077a1fda82
Python's async functions (declared with "async def" rather than "def") were not being displayed in hunk headers. This commit teaches git about the async function syntax, and adds tests for the Python userdiff regex. Signed-off-by: Josh Holland <anowlcalledjosh@gmail.com> Acked-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
7 lines
125 B
Text
7 lines
125 B
Text
class Foo:
|
|
async def RIGHT(self, x: int):
|
|
return [
|
|
1,
|
|
2,
|
|
ChangeMe,
|
|
]
|