File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
python/ql/test/library-tests/frameworks/stdlib-py3 Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 2121
2222wb = p .write_bytes
2323wb (b"hello" ) # $ getAPathArgument=p fileWriteData=b"hello"
24+
25+ p .link_to ("target" ) # $ getAPathArgument=p MISSING: getAPathArgument="target"
26+ p .link_to (target = "target" ) # $ getAPathArgument=p MISSING: getAPathArgument="target"
27+
28+ p .samefile ("other_path" ) # $ getAPathArgument=p MISSING: getAPathArgument="other_path"
29+ p .samefile (other_path = "other_path" ) # $ getAPathArgument=p MISSING: getAPathArgument="other_path"
30+
31+ p .rename ("target" ) # $ getAPathArgument=p MISSING: getAPathArgument="target"
32+ p .rename (target = "target" ) # $ getAPathArgument=p MISSING: getAPathArgument="target"
33+
34+ p .replace ("target" ) # $ getAPathArgument=p MISSING: getAPathArgument="target"
35+ p .replace (target = "target" ) # $ getAPathArgument=p MISSING: getAPathArgument="target"
You can’t perform that action at this time.
0 commit comments