We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
open
1 parent caf73e4 commit 5af1fddCopy full SHA for 5af1fdd
python/ql/test/experimental/library-tests/frameworks/stdlib/FileSystemAccess.py
@@ -1,7 +1,18 @@
1
+import builtins
2
+import io
3
+
4
open("filepath") # $getAPathArgument="filepath"
5
open(file="filepath") # $getAPathArgument="filepath"
6
7
o = open
8
9
o("filepath") # $ MISSING: getAPathArgument="filepath"
10
o(file="filepath") # $ MISSING: getAPathArgument="filepath"
11
12
13
+builtins.open("filepath") # $ MISSING: getAPathArgument="filepath"
14
+builtins.open(file="filepath") # $ MISSING: getAPathArgument="filepath"
15
16
17
+io.open("filepath") # $ MISSING: getAPathArgument="filepath"
18
+io.open(file="filepath") # $ MISSING: getAPathArgument="filepath"
0 commit comments