Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 227a0a1

Browse files
committed
Added 1995 to copyright message; added a few people to acks again...
1 parent f456b6d commit 227a0a1

4 files changed

Lines changed: 20 additions & 12 deletions

File tree

Misc/ACKS

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ Jan-Hein B"uhrman
2525
Dick Bulterman
2626
Tommy Burnette
2727
Mike Carlton
28-
Matthew Conway
2928
David Chaum
29+
Matt Conway
30+
Tom Culliton
3031
John Cugini
3132
Jonathan Dasteel
3233
John DeGood
@@ -102,6 +103,7 @@ Frank Visser
102103
Richard Walker
103104
Barry Warsaw
104105
Steve Waterbury
106+
Bob Watson
105107
Rickard Westman
106108
Dik Winter
107109

Misc/COPYRIGHT

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
2-
Amsterdam, The Netherlands.
1+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
2+
The Netherlands.
33

44
All Rights Reserved
55

Misc/Fixcprt.py

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@
88
import stat
99
import getopt
1010

11-
oldcprt = 'Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum,\nAmsterdam, The Netherlands.'
12-
newcprt = 'Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,\nAmsterdam, The Netherlands.'
11+
oldcprt = """\
12+
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
13+
Amsterdam, The Netherlands."""
14+
newcprt = """\
15+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
16+
The Netherlands."""
1317

1418
oldprog = regex.compile(oldcprt)
1519
newprog = regex.compile(newcprt)
1620

21+
HEADSIZE = 1024
22+
1723
def main():
1824
opts, args = getopt.getopt(sys.argv[1:], 'y:')
1925
agelimit = 0L
@@ -36,7 +42,7 @@ def main():
3642
except IOError, msg:
3743
print file, ': open failed :', msg
3844
continue
39-
head = f.read(1024)
45+
head = f.read(HEADSIZE)
4046
if oldprog.search(head) < 0:
4147
if newprog.search(head) < 0:
4248
print file, ': NO COPYRIGHT FOUND'

Misc/python.man

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH PYTHON "3 May 1994"
1+
.TH PYTHON "4 January 1995"
22
.SH NAME
33
python \- an interpreted, interactive, object-oriented programming language
44
.SH SYNOPSIS
@@ -221,15 +221,15 @@ To subscribe, send mail containing your real name and e-mail address
221221
in Internet form to
222222
223223
.SH COPYRIGHT
224-
Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
225-
Amsterdam, The Netherlands.
224+
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
225+
The Netherlands.
226226
.IP " "
227227
All Rights Reserved
228228
.PP
229-
Permission to use, copy, modify, and distribute this software and its
230-
documentation for any purpose and without fee is hereby granted,
229+
Permission to use, copy, modify, and distribute this software and its
230+
documentation for any purpose and without fee is hereby granted,
231231
provided that the above copyright notice appear in all copies and that
232-
both that copyright notice and this permission notice appear in
232+
both that copyright notice and this permission notice appear in
233233
supporting documentation, and that the names of Stichting Mathematisch
234234
Centrum or CWI not be used in advertising or publicity pertaining to
235235
distribution of the software without specific, written prior permission.

0 commit comments

Comments
 (0)