Use re instead of regex.

Don't rewrite the file in place.
(Reported by Andy Dustman.)
This commit is contained in:
Guido van Rossum 1999-04-09 14:56:35 +00:00
parent 2e1094e4ef
commit d68a4bd56c

View file

@ -1,29 +1,30 @@
#! /usr/bin/env python #!/usr/bin/env python
# Fix Python script(s) to reference the interpreter via /usr/bin/env python. # 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 sys
import regex import re
import regsub
def main(): def main():
for file in sys.argv[1:]: for file in sys.argv[1:]:
try: try:
f = open(file, 'r+') f = open(file, 'r')
except IOError: except IOError, msg:
print file, ': can\'t open for update' print file, ': can\'t open :', msg
continue continue
line = f.readline() line = f.readline()
if regex.match('^#! */usr/local/bin/python', line) < 0: if not re.match('^#! */usr/local/bin/python', line):
print file, ': not a /usr/local/bin/python script' print file, ': not a /usr/local/bin/python script'
f.close() f.close()
continue continue
rest = f.read() rest = f.read()
line = regsub.sub('/usr/local/bin/python', f.close()
'/usr/bin/env python', line) line = re.sub('/usr/local/bin/python',
'/usr/bin/env python', line)
print file, ':', `line` print file, ':', `line`
f.seek(0) f = open(file, "w")
f.write(line) f.write(line)
f.write(rest) f.write(rest)
f.close() f.close()