summaryrefslogtreecommitdiffstats
path: root/Tools/scripts/checkpyc.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-09 17:27:55 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-08-09 17:27:55 (GMT)
commite236b38731823aeb87bb6d101062f54a72044954 (patch)
tree6283b4999bb585c11ae1dfeb87dfb6e083f78e6c /Tools/scripts/checkpyc.py
parent6c542b731cfe3e17991643bfc41bb785331e7e5c (diff)
downloadcpython-e236b38731823aeb87bb6d101062f54a72044954.zip
cpython-e236b38731823aeb87bb6d101062f54a72044954.tar.gz
cpython-e236b38731823aeb87bb6d101062f54a72044954.tar.bz2
[Patch #1005491 ] use __name__ == '__main__' in scripts
Diffstat (limited to 'Tools/scripts/checkpyc.py')
-rwxr-xr-xTools/scripts/checkpyc.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/scripts/checkpyc.py b/Tools/scripts/checkpyc.py
index d5f3c7a..8af7672 100755
--- a/Tools/scripts/checkpyc.py
+++ b/Tools/scripts/checkpyc.py
@@ -62,4 +62,5 @@ def get_long(s):
return -1
return ord(s[0]) + (ord(s[1])<<8) + (ord(s[2])<<16) + (ord(s[3])<<24)
-main()
+if __name__ == '__main__':
+ main()