diff options
author | Josh Holland <anowlcalledjosh@gmail.com> | 2019-11-19 15:08:10 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-11-20 16:31:43 +0900 |
commit | 077a1fda82b237c16eb10bd988650468683a94b5 (patch) | |
tree | 3dc2a504b62249c0b4a7336a58d4e9dccee14660 /t/t4018/python-indented-class | |
parent | Git 2.23 (diff) | |
download | tgif-077a1fda82b237c16eb10bd988650468683a94b5.tar.xz |
userdiff: support Python async functions
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>
Diffstat (limited to 't/t4018/python-indented-class')
-rw-r--r-- | t/t4018/python-indented-class | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/t/t4018/python-indented-class b/t/t4018/python-indented-class new file mode 100644 index 0000000000..19b4f35c4c --- /dev/null +++ b/t/t4018/python-indented-class @@ -0,0 +1,5 @@ +if TYPE_CHECKING: + class RIGHT: + # comment + # another comment + # ChangeMe |