summaryrefslogtreecommitdiff
path: root/Tools/scripts/methfix.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-09 17:27:55 +0000
committerAndrew M. Kuchling <amk@amk.ca>2004-08-09 17:27:55 +0000
commite236b38731823aeb87bb6d101062f54a72044954 (patch)
tree6283b4999bb585c11ae1dfeb87dfb6e083f78e6c /Tools/scripts/methfix.py
parent6c542b731cfe3e17991643bfc41bb785331e7e5c (diff)
downloadcpython-git-e236b38731823aeb87bb6d101062f54a72044954.tar.gz
[Patch #1005491 ] use __name__ == '__main__' in scripts
Diffstat (limited to 'Tools/scripts/methfix.py')
-rwxr-xr-xTools/scripts/methfix.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tools/scripts/methfix.py b/Tools/scripts/methfix.py
index 9200d265a0..a872ab7395 100755
--- a/Tools/scripts/methfix.py
+++ b/Tools/scripts/methfix.py
@@ -167,5 +167,5 @@ def fixline(line):
line = line[:a] + line[c:d] + line[b:]
return line
-
-main()
+if __name__ == '__main__':
+ main()