Files
codeql/python/ql/test/experimental/library-tests/frameworks/stdlib/FileSystemAccess.py
Rasmus Lerchedahl Petersen b6313dddb9 Python: Add concept tests
2020-10-27 08:26:00 +01:00

8 lines
217 B
Python

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