mirror of
https://github.com/github/codeql.git
synced 2025-12-24 12:46:34 +01:00
8 lines
217 B
Python
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"
|