We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25f3143 commit bfd923fCopy full SHA for bfd923f
1 file changed
tamper/versionedkeywords.py
@@ -23,7 +23,7 @@ def tamper(payload):
23
24
def process(match):
25
word = match.group('word')
26
- if word.upper() in kb.keywords and word.upper() not in ["CAST"]: # CAST can't be commented out
+ if word.upper() in kb.keywords and word.upper() not in ["CAST", "COUNT"]: # keywords that can't be commented out
27
return match.group().replace(word, "/*!%s*/" % word)
28
else:
29
return match.group()
0 commit comments