Files
codeql/python/ql/test/experimental/library-tests/frameworks/stdlib/FileSystemAccess.py

8 lines
231 B
Python

open("filepath") # $getAPathArgument="filepath"
open(file="filepath") # $getAPathArgument="filepath"
o = open
o("filepath") # $ MISSING: getAPathArgument="filepath"
o(file="filepath") # $ MISSING: getAPathArgument="filepath"