We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c8920e commit 90670fcCopy full SHA for 90670fc
test/PlaygroundTransform/Inputs/not.py
@@ -7,7 +7,8 @@
7
sys.exit(0)
8
9
try:
10
- subprocess.check_call(shlex.split(sys.argv[1]))
+ isPosix = (sys.platform != "win32")
11
+ subprocess.check_call(shlex.split(sys.argv[1], posix=isPosix))
12
sys.exit(1)
13
except subprocess.CalledProcessError as e:
14
0 commit comments