[PATCH] Teach "git diff -p" Python funcname patterns

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Finds classes and functions/methods. The pattern is adapted from the
ruby one.

Signed-off-by: Kirill Smelkov <kirr@xxxxxxxxxx>
---
 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

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux