回答編集履歴
1
引数間違いの修正
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
pipe = subprocess.Popen('random.exe', stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
9
|
+
pipe = subprocess.Popen(['random.exe'], stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
10
10
|
|
11
11
|
```
|
12
12
|
|