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 <[email protected]> --- 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 _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
