Himanshu Jha
2018-01-15 12:36:45 UTC
Fix regex matching by using correct python syntax by passing the
compiled regex object to the argument of search function for effective
searching.
Signed-off-by: Himanshu Jha <***@gmail.com>
---
demos/python_regexp.cocci | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/demos/python_regexp.cocci b/demos/python_regexp.cocci
index ce43367..ffb4bd1 100644
--- a/demos/python_regexp.cocci
+++ b/demos/python_regexp.cocci
@@ -16,7 +16,7 @@ id << r_init.id;
@@
print "COCCI: Analyzing %s" % id
-if m.search(id.ident) != None:
+if m.search(id) != None:
print "COCCI: %s matchs '_new$'" % id
else:
print "COCCI: %s discarded" % id
compiled regex object to the argument of search function for effective
searching.
Signed-off-by: Himanshu Jha <***@gmail.com>
---
demos/python_regexp.cocci | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/demos/python_regexp.cocci b/demos/python_regexp.cocci
index ce43367..ffb4bd1 100644
--- a/demos/python_regexp.cocci
+++ b/demos/python_regexp.cocci
@@ -16,7 +16,7 @@ id << r_init.id;
@@
print "COCCI: Analyzing %s" % id
-if m.search(id.ident) != None:
+if m.search(id) != None:
print "COCCI: %s matchs '_new$'" % id
else:
print "COCCI: %s discarded" % id
--
2.7.4
2.7.4