Skip to content

Commit 2de79dd

Browse files
committed
Use new high-level API
1 parent 6d846b5 commit 2de79dd

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

source-code/subprocess/wc_metrics.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22

33
from argparse import ArgumentParser
4-
from subprocess import check_output, CalledProcessError, STDOUT
4+
import subprocess
55

66

77
class WcInfo:
@@ -58,11 +58,12 @@ def main():
5858
args = arg_parser.parse_args()
5959
for f in args.files:
6060
try:
61-
stats = check_output(['wc', f], stderr=STDOUT)
62-
wc_info = WcInfo(stats.decode(encoding='utf-8'))
61+
stats = subprocess.run(['wc', f], capture_output=True,
62+
text=True, check=True)
63+
wc_info = WcInfo(stats.stdout)
6364
print(wc_info)
6465
print(compute_stats(wc_info))
65-
except CalledProcessError as e:
66+
except subprocess.CalledProcessError as e:
6667
print(e)
6768

6869
if __name__ == '__main__':

0 commit comments

Comments
 (0)