cpython/Tools/scripts/fixnotice.py

49 lines
1.2 KiB
Python
Raw Normal View History

1996-11-27 15:41:55 -04:00
#! /usr/bin/env python
OLD_NOTICE = """/***********************************************************
2000-06-30 20:50:40 -03:00
Copyright (c) 2000, BeOpen.com.
Copyright (c) 1995-2000, Corporation for National Research Initiatives.
Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
All rights reserved.
1996-11-27 15:41:55 -04:00
2000-06-30 20:50:40 -03:00
See the file "Misc/COPYRIGHT" for information on usage and
redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
******************************************************************/
1996-11-27 15:41:55 -04:00
"""
NEW_NOTICE = ""
1996-11-27 15:41:55 -04:00
# " <-- Help Emacs
import os, sys, string
def main():
args = sys.argv[1:]
if not args:
1998-03-24 01:30:29 -04:00
print "No arguments."
1996-11-27 15:41:55 -04:00
for arg in args:
1998-03-24 01:30:29 -04:00
process(arg)
1996-11-27 15:41:55 -04:00
def process(arg):
f = open(arg)
data = f.read()
f.close()
i = string.find(data, OLD_NOTICE)
if i < 0:
## print "No old notice in", arg
1998-03-24 01:30:29 -04:00
return
1996-11-27 15:41:55 -04:00
data = data[:i] + NEW_NOTICE + data[i+len(OLD_NOTICE):]
new = arg + ".new"
backup = arg + ".bak"
print "Replacing notice in", arg, "...",
sys.stdout.flush()
f = open(new, "w")
f.write(data)
f.close()
os.rename(arg, backup)
os.rename(new, arg)
print "done"
if __name__ == '__main__':
main()