We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d846b5 commit 2de79ddCopy full SHA for 2de79dd
source-code/subprocess/wc_metrics.py
@@ -1,7 +1,7 @@
1
#!/usr/bin/env python
2
3
from argparse import ArgumentParser
4
-from subprocess import check_output, CalledProcessError, STDOUT
+import subprocess
5
6
7
class WcInfo:
@@ -58,11 +58,12 @@ def main():
58
args = arg_parser.parse_args()
59
for f in args.files:
60
try:
61
- stats = check_output(['wc', f], stderr=STDOUT)
62
- wc_info = WcInfo(stats.decode(encoding='utf-8'))
+ stats = subprocess.run(['wc', f], capture_output=True,
+ text=True, check=True)
63
+ wc_info = WcInfo(stats.stdout)
64
print(wc_info)
65
print(compute_stats(wc_info))
- except CalledProcessError as e:
66
+ except subprocess.CalledProcessError as e:
67
print(e)
68
69
if __name__ == '__main__':
0 commit comments