diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2004-08-09 17:27:55 +0000 |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2004-08-09 17:27:55 +0000 |
commit | e236b38731823aeb87bb6d101062f54a72044954 (patch) | |
tree | 6283b4999bb585c11ae1dfeb87dfb6e083f78e6c /Tools/scripts/gprof2html.py | |
parent | 6c542b731cfe3e17991643bfc41bb785331e7e5c (diff) | |
download | cpython-git-e236b38731823aeb87bb6d101062f54a72044954.tar.gz |
[Patch #1005491 ] use __name__ == '__main__' in scripts
Diffstat (limited to 'Tools/scripts/gprof2html.py')
-rwxr-xr-x | Tools/scripts/gprof2html.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/scripts/gprof2html.py b/Tools/scripts/gprof2html.py index aa13d52462..cb01c2ce68 100755 --- a/Tools/scripts/gprof2html.py +++ b/Tools/scripts/gprof2html.py @@ -75,4 +75,5 @@ def main(): output.close() webbrowser.open("file:" + os.path.abspath(outputfilename)) -main() +if __name__ == '__main__': + main() |