Kaydet (Commit) 227a0a1e authored tarafından Guido van Rossum's avatar Guido van Rossum

Added 1995 to copyright message; added a few people to acks again...

üst f456b6d6
......@@ -25,8 +25,9 @@ Jan-Hein B"uhrman
Dick Bulterman
Tommy Burnette
Mike Carlton
Matthew Conway
David Chaum
Matt Conway
Tom Culliton
John Cugini
Jonathan Dasteel
John DeGood
......@@ -102,6 +103,7 @@ Frank Visser
Richard Walker
Barry Warsaw
Steve Waterbury
Bob Watson
Rickard Westman
Dik Winter
tim@prl.philips.nl
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
Amsterdam, The Netherlands.
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands.
All Rights Reserved
......
......@@ -8,12 +8,18 @@ import os
import stat
import getopt
oldcprt = 'Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,\nAmsterdam, The Netherlands.'
newcprt = 'Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,\nAmsterdam, The Netherlands.'
oldcprt = """\
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
Amsterdam, The Netherlands."""
newcprt = """\
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands."""
oldprog = regex.compile(oldcprt)
newprog = regex.compile(newcprt)
HEADSIZE = 1024
def main():
opts, args = getopt.getopt(sys.argv[1:], 'y:')
agelimit = 0L
......@@ -36,7 +42,7 @@ def main():
except IOError, msg:
print file, ': open failed :', msg
continue
head = f.read(1024)
head = f.read(HEADSIZE)
if oldprog.search(head) < 0:
if newprog.search(head) < 0:
print file, ': NO COPYRIGHT FOUND'
......
.TH PYTHON "3 May 1994"
.TH PYTHON "4 January 1995"
.SH NAME
python \- an interpreted, interactive, object-oriented programming language
.SH SYNOPSIS
......@@ -221,8 +221,8 @@ To subscribe, send mail containing your real name and e-mail address
in Internet form to
.I python-list-request@cwi.nl.
.SH COPYRIGHT
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
Amsterdam, The Netherlands.
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands.
.IP " "
All Rights Reserved
.PP
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment