Silence Coverity false alerts with CIDs #172, #183, #184
diff --git a/Modules/_sre.c b/Modules/_sre.c
index d79d5a7..808fb57 100644
--- a/Modules/_sre.c
+++ b/Modules/_sre.c
@@ -2678,7 +2678,7 @@
         return NULL;
 
     n = PyList_GET_SIZE(code);
-
+    /* coverity[ampersand_in_size] */
     self = PyObject_NEW_VAR(PatternObject, &Pattern_Type, n);
     if (!self)
         return NULL;
@@ -3185,6 +3185,7 @@
     if (status > 0) {
 
         /* create match object (with room for extra group marks) */
+        /* coverity[ampersand_in_size] */
         match = PyObject_NEW_VAR(MatchObject, &Match_Type,
                                  2*(pattern->groups+1));
         if (!match)