Python: Re-introduce syntactic handling of str/bytes/unicode

I don't want to loose results on this, so until type-tracking/API graphs
can handle this, I want to keep our syntactic handling.
This commit is contained in:
Rasmus Wriedt Larsen
2021-05-19 12:44:26 +02:00
parent aa8b7306a3
commit c4987e94e0
2 changed files with 6 additions and 2 deletions

View File

@@ -32,7 +32,7 @@ def str_operations():
ts[0], # $ tainted
str(ts), # $ tainted
bytes(tb), # $ tainted
unicode(ts), # $ MISSING: tainted
unicode(ts), # $ tainted
)
aug_assignment = "safe"