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 ...@@ -25,8 +25,9 @@ Jan-Hein B"uhrman
Dick Bulterman Dick Bulterman
Tommy Burnette Tommy Burnette
Mike Carlton Mike Carlton
Matthew Conway
David Chaum David Chaum
Matt Conway
Tom Culliton
John Cugini John Cugini
Jonathan Dasteel Jonathan Dasteel
John DeGood John DeGood
...@@ -102,6 +103,7 @@ Frank Visser ...@@ -102,6 +103,7 @@ Frank Visser
Richard Walker Richard Walker
Barry Warsaw Barry Warsaw
Steve Waterbury Steve Waterbury
Bob Watson
Rickard Westman Rickard Westman
Dik Winter Dik Winter
tim@prl.philips.nl tim@prl.philips.nl
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum, Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
Amsterdam, The Netherlands. The Netherlands.
All Rights Reserved All Rights Reserved
......
...@@ -8,12 +8,18 @@ import os ...@@ -8,12 +8,18 @@ import os
import stat import stat
import getopt import getopt
oldcprt = 'Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,\nAmsterdam, The Netherlands.' oldcprt = """\
newcprt = 'Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,\nAmsterdam, The Netherlands.' 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) oldprog = regex.compile(oldcprt)
newprog = regex.compile(newcprt) newprog = regex.compile(newcprt)
HEADSIZE = 1024
def main(): def main():
opts, args = getopt.getopt(sys.argv[1:], 'y:') opts, args = getopt.getopt(sys.argv[1:], 'y:')
agelimit = 0L agelimit = 0L
...@@ -36,7 +42,7 @@ def main(): ...@@ -36,7 +42,7 @@ def main():
except IOError, msg: except IOError, msg:
print file, ': open failed :', msg print file, ': open failed :', msg
continue continue
head = f.read(1024) head = f.read(HEADSIZE)
if oldprog.search(head) < 0: if oldprog.search(head) < 0:
if newprog.search(head) < 0: if newprog.search(head) < 0:
print file, ': NO COPYRIGHT FOUND' print file, ': NO COPYRIGHT FOUND'
......
.TH PYTHON "3 May 1994" .TH PYTHON "4 January 1995"
.SH NAME .SH NAME
python \- an interpreted, interactive, object-oriented programming language python \- an interpreted, interactive, object-oriented programming language
.SH SYNOPSIS .SH SYNOPSIS
...@@ -221,15 +221,15 @@ To subscribe, send mail containing your real name and e-mail address ...@@ -221,15 +221,15 @@ To subscribe, send mail containing your real name and e-mail address
in Internet form to in Internet form to
.I python-list-request@cwi.nl. .I python-list-request@cwi.nl.
.SH COPYRIGHT .SH COPYRIGHT
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum, Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
Amsterdam, The Netherlands. The Netherlands.
.IP " " .IP " "
All Rights Reserved All Rights Reserved
.PP .PP
Permission to use, copy, modify, and distribute this software and its Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted, documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in both that copyright notice and this permission notice appear in
supporting documentation, and that the names of Stichting Mathematisch supporting documentation, and that the names of Stichting Mathematisch
Centrum or CWI not be used in advertising or publicity pertaining to Centrum or CWI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior permission. distribution of the software without specific, written prior permission.
......
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