diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-04-05 01:28:14 (GMT) |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-04-05 01:28:14 (GMT) |
commit | 54ac832a24a0f40ea3278707420b191be3619c99 (patch) | |
tree | 67046379cb835bbc0e4e2b0e387ec763222e8814 /Tools/scripts/md5sum.py | |
parent | b6046301ef70ca30f106038cf3799278e770d3ca (diff) | |
download | cpython-54ac832a24a0f40ea3278707420b191be3619c99.zip cpython-54ac832a24a0f40ea3278707420b191be3619c99.tar.gz cpython-54ac832a24a0f40ea3278707420b191be3619c99.tar.bz2 |
#14490, #14491: add 'sundry'-style import tests for Tools/scripts.
This patch changes a few of the scripts to have __name__=='__main__'
clauses so that they are importable without running. Also fixes the
syntax errors revealed by the tests.
Diffstat (limited to 'Tools/scripts/md5sum.py')
-rwxr-xr-x | Tools/scripts/md5sum.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/md5sum.py b/Tools/scripts/md5sum.py index 743da72..521960c 100755 --- a/Tools/scripts/md5sum.py +++ b/Tools/scripts/md5sum.py @@ -20,7 +20,7 @@ file ... : files to sum; '-' or no files means stdin import sys import os import getopt -import md5 +from hashlib import md5 def sum(*files): sts = 0 |