Python: Restrict type-tracking content to only be precise

At least for now :)
This commit is contained in:
Rasmus Wriedt Larsen
2024-03-15 10:24:57 +01:00
parent 6babb2ff90
commit 7eb4419342
2 changed files with 17 additions and 3 deletions

View File

@@ -41,8 +41,8 @@ tms = tainted_mapped_summary[0]
tms # $ MISSING: tracked
another_tainted_list = TTS_append_to_list([], tracked) # $ tracked
atl = another_tainted_list[0] # $ tracked
atl # $ tracked
atl = another_tainted_list[0]
atl # $ MISSING: tracked
# This will not work, as the call is not found by `getACallSimple`.
from json import loads as json_loads