diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-08-09 17:27:55 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-08-09 17:27:55 (GMT) |
commit | e236b38731823aeb87bb6d101062f54a72044954 (patch) | |
tree | 6283b4999bb585c11ae1dfeb87dfb6e083f78e6c /Tools/scripts/pdeps.py | |
parent | 6c542b731cfe3e17991643bfc41bb785331e7e5c (diff) | |
download | cpython-e236b38731823aeb87bb6d101062f54a72044954.zip cpython-e236b38731823aeb87bb6d101062f54a72044954.tar.gz cpython-e236b38731823aeb87bb6d101062f54a72044954.tar.bz2 |
[Patch #1005491 ] use __name__ == '__main__' in scripts
Diffstat (limited to 'Tools/scripts/pdeps.py')
-rwxr-xr-x | Tools/scripts/pdeps.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Tools/scripts/pdeps.py b/Tools/scripts/pdeps.py index 1589709..e835f84 100755 --- a/Tools/scripts/pdeps.py +++ b/Tools/scripts/pdeps.py @@ -160,7 +160,8 @@ def printresults(table): # Call main and honor exit status -try: - sys.exit(main()) -except KeyboardInterrupt: - sys.exit(1) +if __name__ == '__main__': + try: + sys.exit(main()) + except KeyboardInterrupt: + sys.exit(1) |