You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The previous regex on line 65 r"\bstruct|union\b" matches "struct" at the beginning of a word or "union" at the end of a word (e.g. it matches twice on "structured reunion" and re.sub will give "ured re").
The proposed regex r"\b(struct|union)\b" matches "struct" or "union" as a whole word only.
0 commit comments