diff options
author | Éric Araujo <merwok@netwok.org> | 2011-07-26 18:01:08 +0200 |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-07-26 18:01:08 +0200 |
commit | a0e92a802815d55dafd303b39843ddd2b9784bdb (patch) | |
tree | ec530c8b0dc40d3285975e915e268e9f615f6606 /Tools/scripts/diff.py | |
parent | 1ce7b17165c405a0772fb49c3b7143aa6b9ce4cd (diff) | |
download | cpython-git-a0e92a802815d55dafd303b39843ddd2b9784bdb.tar.gz |
Fix missing or wrong shebangs and missing executable bits for scripts (#10318)
Diffstat (limited to 'Tools/scripts/diff.py')
-rwxr-xr-x[-rw-r--r--] | Tools/scripts/diff.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/scripts/diff.py b/Tools/scripts/diff.py index 52dcab1ff9..9efb078fb8 100644..100755 --- a/Tools/scripts/diff.py +++ b/Tools/scripts/diff.py @@ -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. |