Skip to content

Commit

Permalink
Added 1995 to copyright message; added a few people to acks again...
Browse files Browse the repository at this point in the history
  • Loading branch information
gvanrossum committed Jan 4, 1995
1 parent f456b6d commit 227a0a1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
4 changes: 3 additions & 1 deletion Misc/ACKS
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -102,6 +103,7 @@ Frank Visser
Richard Walker
Barry Warsaw
Steve Waterbury
Bob Watson
Rickard Westman
Dik Winter
[email protected]
4 changes: 2 additions & 2 deletions Misc/COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
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

Expand Down
12 changes: 9 additions & 3 deletions Misc/Fixcprt.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,18 @@
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
Expand All @@ -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'
Expand Down
12 changes: 6 additions & 6 deletions Misc/python.man
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH PYTHON "3 May 1994"
.TH PYTHON "4 January 1995"
.SH NAME
python \- an interpreted, interactive, object-oriented programming language
.SH SYNOPSIS
Expand Down Expand Up @@ -221,15 +221,15 @@ To subscribe, send mail containing your real name and e-mail address
in Internet form to
.I [email protected].
.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
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
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
Centrum or CWI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior permission.
Expand Down

0 comments on commit 227a0a1

Please sign in to comment.