teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

2

誤字

2023/05/03 11:53

投稿

kankan0
kankan0

スコア24

title CHANGED
@@ -1,1 +1,1 @@
1
- Python subprocess.sunでstderrにエラーが格納されない
1
+ Python subprocess.runでstderrにエラーが格納されない
body CHANGED
File without changes

1

脱字

2023/05/03 11:53

投稿

kankan0
kankan0

スコア24

title CHANGED
File without changes
body CHANGED
@@ -1,6 +1,6 @@
1
1
  Windows10で、Python3から以下のようにコマンドを実行します。
2
2
  ```python
3
- res = run(["cmd", "/c", "copy", r"C:\test\abc.txt", r"C:\test2"], encoding="cp932", capture_output=True)
3
+ res = subprocess.run(["cmd", "/c", "copy", r"C:\test\abc.txt", r"C:\test2"], encoding="cp932", capture_output=True)
4
4
 
5
5
  print(res)
6
6
  print("正常:", res.stdout)