]> granicus.if.org Git - python/commitdiff
Fix missing or wrong shebangs and missing executable bits for scripts (#10318)
authorÉric Araujo <merwok@netwok.org>
Tue, 26 Jul 2011 16:01:08 +0000 (18:01 +0200)
committerÉric Araujo <merwok@netwok.org>
Tue, 26 Jul 2011 16:01:08 +0000 (18:01 +0200)
15 files changed:
Tools/scripts/abitype.py [changed mode: 0644->0755]
Tools/scripts/cleanfuture.py [changed mode: 0644->0755]
Tools/scripts/combinerefs.py [changed mode: 0644->0755]
Tools/scripts/db2pickle.py [changed mode: 0644->0755]
Tools/scripts/diff.py [changed mode: 0644->0755]
Tools/scripts/find_recursionlimit.py [changed mode: 0644->0755]
Tools/scripts/get-remote-certificate.py [changed mode: 0644->0755]
Tools/scripts/mailerdaemon.py [changed mode: 0644->0755]
Tools/scripts/make_ctype.py [changed mode: 0644->0755]
Tools/scripts/md5sum.py [changed mode: 0644->0755]
Tools/scripts/patchcheck.py [changed mode: 0644->0755]
Tools/scripts/pickle2db.py [changed mode: 0644->0755]
Tools/scripts/pysource.py [changed mode: 0644->0755]
Tools/scripts/reindent-rst.py
Tools/scripts/svneol.py [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index e35ef6a..4d96c8b
@@ -1,3 +1,4 @@
+#!/usr/bin/env python3
 # This script converts a C file to use the PEP 384 type definition API
 # Usage: abitype.py < old_code > new_code
 import re, sys
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index 52dcab1..9efb078
@@ -1,3 +1,4 @@
+#!/usr/bin/env python3
 """ Command line interface to difflib.py providing diffs in four formats:
 
 * ndiff:    lists every line and highlights interline changes.
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index 62189f1..aeb451e
@@ -1,3 +1,4 @@
+#!/usr/bin/env python3
 """Classes to parse mailer-daemon messages."""
 
 import calendar
old mode 100644 (file)
new mode 100755 (executable)
index 359d6b3..afee1c5
@@ -1,3 +1,4 @@
+#!/usr/bin/env python3
 """Script that generates the ctype.h-replacement in stringobject.c."""
 
 NAMES = ("LOWER", "UPPER", "ALPHA", "DIGIT", "XDIGIT", "ALNUM", "SPACE")
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index e767eda..13b8ba4
@@ -1,3 +1,4 @@
+#!/usr/bin/env python3
 import re
 import sys
 import shutil
old mode 100644 (file)
new mode 100755 (executable)
old mode 100644 (file)
new mode 100755 (executable)
index ceb84bfd3cb84792c31b807a9d80bb8fd9f1fda4..25608af66ac2fcafb85d1f9924a0265bdf093c67 100755 (executable)
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 
 # Make a reST file compliant to our pre-commit hook.
 # Currently just remove trailing whitespace.
old mode 100644 (file)
new mode 100755 (executable)