Skip to content

Commit 3c647c6

Browse files
committed
Python: update comment
1 parent 21f683d commit 3c647c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/ql/src/semmle/python/regex.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ abstract class RegexString extends Expr {
369369
// hex value \xhh
370370
this.getChar(start + 1) = "x" and end = start + 4
371371
or
372-
// octal value \ooo
372+
// octal value \o, \oo, or \ooo
373373
end in [start + 2 .. start + 4] and
374374
forall(int i | i in [start + 1 .. end - 1] | this.isOctal(i)) and
375375
not (

0 commit comments

Comments
 (0)