mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
9 lines
321 B
Python
9 lines
321 B
Python
import anyio
|
|
from anyio.streams.file import FileReadStream, FileWriteStream
|
|
from anyio import Path
|
|
|
|
anyio.open_file("file", 'r') # $ getAPathArgument="file"
|
|
FileReadStream.from_path("file") # $ getAPathArgument="file"
|
|
FileWriteStream.from_path("file") # $ getAPathArgument="file"
|
|
Path("file") # $ getAPathArgument="file"
|