Skip to content

Commit 6f2cdbf

Browse files
committed
Python: Give up on providing values for form feeds
1 parent ffb8938 commit 6f2cdbf

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

python/ql/src/semmle/python/RegexTreeView.qll

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -445,8 +445,9 @@ class RegExpEscape extends RegExpNormalChar {
445445
or
446446
this.getUnescaped() = "t" and result = "\t"
447447
or
448-
this.getUnescaped() = "f" and result = " "
449-
or
448+
// TODO: Find a way to include a formfeed character
449+
// this.getUnescaped() = "f" and result = " "
450+
// or
450451
isUnicode() and
451452
result = getUnicode()
452453
}

0 commit comments

Comments
 (0)