Staging
v0.5.1
https://github.com/python/cpython
Revision 16323cb2c3d315e02637cebebdc5ff46be32ecdf authored by Miro Hrončok on 25 February 2019, 00:50:29 UTC, committed by Benjamin Peterson on 25 February 2019, 00:50:29 UTC
More specifically, the options of --check-hash-based-pycs.
1 parent 3b0abb0
Raw File
Tip revision: 16323cb2c3d315e02637cebebdc5ff46be32ecdf authored by Miro Hrončok on 25 February 2019, 00:50:29 UTC
closes bpo-36083: Fix formatting of the manpage Synopsis. (GH-12017)
Tip revision: 16323cb
fixps.py
#!/usr/bin/env python3

# Fix Python script(s) to reference the interpreter via /usr/bin/env python.
# Warning: this overwrites the file without making a backup.

import sys
import re


def main():
    for filename in sys.argv[1:]:
        try:
            f = open(filename, 'r')
        except IOError as msg:
            print(filename, ': can\'t open :', msg)
            continue
        line = f.readline()
        if not re.match('^#! */usr/local/bin/python', line):
            print(filename, ': not a /usr/local/bin/python script')
            f.close()
            continue
        rest = f.read()
        f.close()
        line = re.sub('/usr/local/bin/python',
                      '/usr/bin/env python', line)
        print(filename, ':', repr(line))
        f = open(filename, "w")
        f.write(line)
        f.write(rest)
        f.close()

if __name__ == '__main__':
    main()
back to top