[PATCH] Teach "git diff -p" Python funcname patterns
From: Kirill Smelkov <hidden>
Date: 2016-06-15 22:45:11
Subsystem:
documentation, the rest · Maintainers:
Jonathan Corbet, Linus Torvalds
From: Kirill Smelkov <hidden>
Date: 2016-06-15 22:45:11
Subsystem:
documentation, the rest · Maintainers:
Jonathan Corbet, Linus Torvalds
Finds classes and functions/methods. The pattern is adapted from the ruby one. Signed-off-by: Kirill Smelkov <redacted> --- Documentation/gitattributes.txt | 2 ++ diff.c | 1 + 2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/Documentation/gitattributes.txt b/Documentation/gitattributes.txt
index db16b0c..a8e29d6 100644
--- a/Documentation/gitattributes.txt
+++ b/Documentation/gitattributes.txt@@ -318,6 +318,8 @@ patterns are available: - `ruby` suitable for source code in the Ruby language. +- `python` suitable for source code in the Python language. + - `tex` suitable for source code for LaTeX documents.
diff --git a/diff.c b/diff.c
index 10d5440..91d5a0a 100644
--- a/diff.c
+++ b/diff.c@@ -1395,6 +1395,7 @@ static struct builtin_funcname_pattern { { "bibtex", "\\(@[a-zA-Z]\\{1,\\}[ \t]*{\\{0,1\\}[ \t]*[^ \t\"@',\\#}{~%]*\\).*$" }, { "tex", "^\\(\\\\\\(\\(sub\\)*section\\|chapter\\|part\\)\\*\\{0,1\\}{.*\\)$" }, { "ruby", "^\\s*\\(\\(class\\|module\\|def\\)\\s.*\\)$" }, + { "python", "^\\s*\\(\\(class\\|def\\)\\s.*\\)$" }, }; static const char *diff_funcname_pattern(struct diff_filespec *one)
--
1.5.6.3